Reputation: 327
conda install pmdarima
PackagesNotFoundError: The following packages are not available from current channels:
Upvotes: 0
Views: 15632
Reputation: 19
I got the same error when I tried installing with "conda install pmdarima". Simply using "python -m pip install pmdarima --user" worked for me on anaconda prompt
Upvotes: 0
Reputation: 13582
Option 1
conda install -n [NameOfVEnv] -c saravji pmdarima
Where -c
stands for "channel" which is
the locations where Navigator and conda look for packages. (Source)
and -n
for "Name of environment".
I just tried here (on CentOS 7) and it worked fine.
Option 2
An alternative, if one is using Windows 10
, is to access Anaconda Prompt
for the environment that you are working with as admin:
And run
conda install -c saravji pmdarima
I just tried here (on Windows 10 64-bit) and it worked fine.
Option 3
As it is suggested on pmdarima's repo on GitHub
pip install pmdarima
You may need to install dependencies (in all the options), but it asks you in the prompt window. If it appears, you will need to enter Y
.
Upvotes: 1
Reputation: 41
Following worked for me to install the package with anaconda:
conda install -c saravji pmdarima
Upvotes: 4
Reputation: 1214
if pip install pmdarima fails to you, try as a user:
pip install pmdarima --user
Upvotes: 3