I'm trying to import a scikit-learn module
from sklearn.model_selection import train_test_split
and receive the error message
File "C:\Software\Anaconda\lib\site-packages\scipy\sparse\linalg\eigen\arpack\arpack.py", line 45, in <module>
from . import _arpack
ImportError: DLL load failed: The specified procedure could not be found.
I'm not the first person to encounter this issue
but neither of the remedies suggested in that discussion
- uninstall/reinstall
scipy
- modify the
fixes.py
file
solved my problem. Any new ideas would be appreciated.