'ImportError: DLL load failed: Le module spécifié est introuvable
I use Python 3.5.2 32-bit on Windows 64-bit. I get this error when I execute the project which uses Scipy, Pandas and Numpy:
Traceback (most recent call last):
import scipy.stats as stat
File "C:\Users\Mohammed\AppData\Local\Programs\Python\Python35-32\lib\site- packages\scipy\stats\__init__.py", line 344, in <module>
from .stats import *
File "C:\Users\Mohammed\AppData\Local\Programs\Python\Python35-32\lib\site- packages\scipy\stats\stats.py", line 173, in <module>
import scipy.special as special
File "C:\Users\Mohammed\AppData\Local\Programs\Python\Python35-32\lib\site-packages\scipy\special\__init__.py", line 636, in <module>
from ._ufuncs import *
File "scipy\special\_ufuncs.pyx", line 1, in init scipy.special._ufuncs (scipy\special\_ufuncs.c:36522)
ImportError: DLL load failed: Le module spécifié est introuvable.
I installed these packages:
- numpy-1.11.1+mkl-cp35-cp35m-win32.whl
- scipy-0.18.0-cp35-cp35m-win32.whl
Solution 1:[1]
Open the most concerned .pyd file with dependency walker (the file should be somewhere in Python35-32\lib\site-packages\scipy\special\ ) to find which dll is missing and where it is expected to be.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Bogey Jammer |
