Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I've tried to import a model on Kaggle: from statsmodels.tsa.arima.model import ARIMA but it returned this error: AttributeError: module 'numpy.linalg.lapack_lite' has no attribute '_ilp64'

There's numpy version 1.18.5. Could you please tell how to fix this error?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
262 views
Welcome To Ask or Share your Answers For Others

1 Answer

I've just back up statmodels library to the version 0.11.0: pip uninstall statsmodels -y pip install statsmodels==0.11.0 It seems like default version 0.11.1 has a bug


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...