My python is 3.5.1 (32-bit) at Win7 (32-bit). I've installed 'scipy-0.16.1-cp35-none-win32.whl' and 'numpy-1.10.2+mkl-cp35-none-win32.whl' downloaded form http://www.lfd.uci.edu/~gohlke/pythonlibs/. And the scipy model can be imported correctly as below:
import scipy
But I get the errors when importing scipy.sparse:
>>> import scipy.sparse Traceback (most recent call last): File "<stdin>", line 1, in <module> File "C:\Users\Administrator\AppData\Local\Programs\Python\Python35-32\lib\site-packages\scipy\sparse\__init__.py", line 213, in <module> from .csr import * File "C:\Users\Administrator\AppData\Local\Programs\Python\Python35-32\lib\site-packages\scipy\sparse\csr.py", line 13, in <module> from ._sparsetools import csr_tocsc, csr_tobsr, csr_count_blocks, \ ImportError: DLL load failed: The specified module could not be found.
And I got the error below by installing scipy by pip:
pip install scipy
How can I correctly import scipy.sparse?