No module named 'pmdarima'

Yizzi picture Yizzi · Sep 19, 2019 · Viewed 16.5k times · Source

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'

Answer

cerofrais picture cerofrais · Sep 19, 2019

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.