Reputation: 49
Getting error
module 'pyramid' has no attribute '__version__'
Error:
stepwise_model = auto_arima(palm_price_ts, start_p=1, start_q=1,
max_p=3, max_q=3, m=12,
start_P=0, seasonal=True,
d=1, D=1, trace=True,
error_action='ignore',
suppress_warnings=True,
stepwise=False)
Upvotes: 2
Views: 2739
Reputation: 49
1.uninstall both pyramid and pyramid-arima 2.after that reinstall pyramid-arima 3.restart kernel
Upvotes: 2
Reputation: 1749
As someone that has just experienced this after installing pyramid
first, via pip, instead of pyramid-arima
, the solution is just to uninstall both and only install one of them (presumably the arima-focused one).
Upvotes: 2