'Error importing scipy.linalg on windows (python 3.3)

I am using python 3.3 on Windows. I downloaded scipy-0.13.2.win32-py3.3.exe from scipy-lib and installed it. However, when I tried to load scipy.linalg, interpreter displayed the following errors:

>>> import scipy.linalg
Traceback (most recent call last):
 File "<pyshell#0>", line 1, in <module>
  import scipy.linalg
 File "C:\Python33\lib\site-packages\scipy\linalg\__init__.py", line 157, in <module>
  from .misc import *
 File "C:\Python33\lib\site-packages\scipy\linalg\misc.py", line 5, in <module>
  from . import blas
 File "C:\Python33\lib\site-packages\scipy\linalg\blas.py", line 131, in <module>
  from scipy.linalg import _fblas
ImportError: DLL load failed: The specified module could not be found.

How can I resolve this issue? Between, I checked installed library modules on my PC with the github modules at linealg-scipy and they are latest, so no issue there, I guess.



Solution 1:[1]

To fix this issue in both Python 2.7/3, you can install scipy from here

It will work better than the version from this deposit.

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 double-beep