I am trying to install Scipy on my Python 3.5 installation (32-bit) on my Windows 7 machine using pre-created binaries: http://www.lfd.uci.edu/~gohlke/pythonlibs
I have to install the following libraries
numpyβ1.10.1+mklβcp35βnoneβwin32.whl scipyβ0.16.1βcp35βnoneβwin32.whl
Then, trying to use the installed packages, I get the following erros
from scipy import sparse < ... Complete error trace ommitted ... > 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.
However, if I follow the same process for Python 3.4, replacing the installers:
numpyβ1.10.1+mklβcp35βnoneβwin32.whl scipyβ0.16.1βcp35βnoneβwin32.whl
Everything works. Are there any additional dependencies or packages that Iβm missing for installing Python 3.5?
Brian cain
source share