简体   繁体   中英

While importing auto_arima from pmdarima: ERROR : cannot import name 'factorial' from 'scipy.misc'

I have python 3.7.1 and scipy version : 1.3.0. I'm getting error while calling auto_arima saying : "cannot import name 'factorial' from 'scipy.misc'"

Just this basic import causes the issue:-
"from pmdarima.arima import auto_arima"
I've tried reinstalling scipy, didn't work

The function factorial was moved from scipy.misc to scipy.special . The version in scipy.misc has been deprecated for a while, and it was removed in scipy 1.3.0. Something in pmdarima or one of its dependencies is still using the name scipy.misc.factorial .

The culprit appears to be statsmodels 0.9.0. pmdarima depends on statsmodels, and there is code in statsmodels 0.9.0 that imports scipy.misc.factorial . The development version of statsmodels has a fix for that, but 0.9.0 is the latest release. The problem should be fixed if you upgrade statsmodels to version 0.10 or later.

The statsmodels developers are aware of the issue; see

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM