I am trying to import the auto_arima function from pmdarima, but am encountering problems and was unable to do so.
The error message is as follow:
C:\Anaconda2\envs\ipykernel_py3\lib\multiprocessing\connection.py in <module>
19 import itertools
20
---> 21 import _multiprocessing
22
23 from . import util
ImportError: DLL load failed while importing _multiprocessing: The specified module could not be found.
I installed pmdarima using the command and was successful.
conda install -c saravji pmdarima
But I was unable to import the auto_arima function in the pmdarima package. I have tried upgrading numpy as it is mentioned in other posts, but that still didn't solve the problem.
Does anyone have any idea about this type of error? Thanks so much!