No module named 'pmdarima'

15,779

Solution 1

you can do !pip install pmdarima in a jupyter cell and it should install the package in where ever the jupyter server is running and the python installed in it.

Solution 2

Assuming that you are using Conda, access the prompt for the environment that you are working with and install the module pmdarima by running

conda install -c saravji pmdarima 

(Source)


Alternatively one might use pip (pmdarima pypi)

pip install pmdarima
Share:
15,779
Yizzi
Author by

Yizzi

Updated on August 06, 2022

Comments

  • Yizzi
    Yizzi almost 2 years

    Im using the jupyter notebook from remote access and want to import the pmdarima for the auto_arima to select the arima model. How can I install the pmdarima through remote access ?

    import auto_arima package

    from pmdarima import auto_arima
    

    The result:

    ModuleNotFoundError: No module named 'pmdarima'
    
  • Admin
    Admin over 2 years
    As it’s currently written, your answer is unclear. Please edit to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers in the help center.