Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to run pyramid auto arima on Anaconda Jupyter notebook?

Apparently, Anaconda has a different pyramid package and it is for web framework. https://anaconda.org/anaconda/pyramid

The user guide for arima pyramid suggests that one uses pip to install pyramid-arima. https://www.alkaline-ml.com/pyramid/setup.html#setup

But since Anaconda uses conda to configure packages, how do I add pyramid-arima to the Anaconda environment for Jupyter notebook?

like image 962
David293836 Avatar asked Oct 20 '18 22:10

David293836


2 Answers

pyramid-arima was recently renamed to pmdarima to avoid collisions with the Pyramid web framework. Try following the steps in this link

like image 92
Aaron Smith Avatar answered Jan 01 '23 10:01

Aaron Smith


To install the package in anaconda for jupyter notebook, the command is:

conda install -c saravji pmdarima
like image 24
drops Avatar answered Jan 01 '23 09:01

drops