How to Fix: "ImportError: DLL load failed The specified procedure could not be found." when the DLLs are there How to Fix: "ImportError: DLL load failed The specified procedure could not be found." when the DLLs are there python-3.x python-3.x

How to Fix: "ImportError: DLL load failed The specified procedure could not be found." when the DLLs are there


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


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