5

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?

David293836
  • 1,165
  • 2
  • 18
  • 36

2 Answers2

12

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

Aaron Smith
  • 121
  • 6
1

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

conda install -c saravji pmdarima
drops
  • 1,524
  • 1
  • 11
  • 20
  • While this will work, it should be noted that the package uploaded to conda by saravji is [not officially supported by the pmdarima authors](https://github.com/alkaline-ml/pmdarima/issues/375) and is significantly out of date. The only supported way to install pmdarima (even in conda) is `pip install pmdarima` – Aaron Smith Aug 29 '20 at 15:14