I recently updated numpy from 1.7.1 to 1.10.1 and scipy from 0.15.1 to 0.16.1 and now I get the error below when I run code that involved scipy:
File "C:\Python27_x64\lib\site-packages\scipy\linalg\blas.py", line 155, in <module>
from scipy.linalg import _fblas
ImportError: DLL load failed: The specified module could not be found.
I tried all this:
fully reinstall Python 2.7.10
install numpy and scipy from whl files (http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy)
install numpy and scipy from pip
install numpy+mkl, as suggested here: ImportError when importing certain modules from SciPY
But none of these worked. I followed the address and found the missing module at the specified path in the python folder. I'm using Python 2.7.10 on Win-64 bit with PyCharm code editor. Any help would be greatly appreciated!