Skip to content Skip to sidebar Skip to footer

How To Fix: "importerror: Dll Load Failed The Specified Procedure Could Not Be Found." When The Dlls Are There

Updated to new Anaconda 2018, opened a jupyter notebook that worked prior to the update. Having problems with loading seaborn into the script. Tried following several threads on th

Solution 1:

I have met the same problem and be puzzled by it either this morning........

By carefully checking the Traceback ----> 4 from scipy.sparse.linalg import LinearOperator

It's the issue of scipy, not seaborn.

I try to uninstall conda versions and install pip versions scipy and numpy, it works now. please have a try, hopefully it could help u too.

$> conda remove --force numpy, scipy
$> pip install numpy
$> pip install scipy

Solution 2:

i have removed completely seaborn, numpy and scipy then i reinstalled them and it works for me.

In my anaconda Powershell i excuted this command:

conda remove--force seaborn numpy scipy

then, in jupyter notebook and execut this in one cell.

pip install seaborn numpy scipy

Post a Comment for "How To Fix: "importerror: Dll Load Failed The Specified Procedure Could Not Be Found." When The Dlls Are There"