1

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
davidism
  • 121,510
  • 29
  • 395
  • 339
ELM
  • 21
  • 1
  • 1
  • 3

1 Answers1

0

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.

Bogey Jammer
  • 638
  • 2
  • 8
  • 23