I'm importing:
from scipy import misc, io
But I get these errors:
Traceback (most recent call last):
File "C:\work_asaaki\code\generateProposals.py", line 20, in <module>
from scipy import misc, io
File "C:\Python27\lib\site-packages\scipy\misc\__init__.py", line 47, in <module>
from scipy.special import comb, factorial, factorial2, factorialk
File "C:\Python27\lib\site-packages\scipy\special\__init__.py", line 548, in <module>
from .basic import *
File "C:\Python27\lib\site-packages\scipy\special\basic.py", line 17, in <module>
from . import orthogonal
File "C:\Python27\lib\site-packages\scipy\special\orthogonal.py", line 90, in <module>
from scipy import linalg
File "C:\Python27\lib\site-packages\scipy\linalg\__init__.py", line 159, in <module>
from .misc import *
File "C:\Python27\lib\site-packages\scipy\linalg\misc.py", line 5, in <module>
from . import blas
File "C:\Python27\lib\site-packages\scipy\linalg\blas.py", line 145, in <module>
from scipy.linalg import _fblas
ImportError: DLL load failed: The specified module could not be found.
Exception in thread Thread-1 (most likely raised during interpreter shutdown):
I'm running 64-bit Windows 7, and Python 2.7, In Anaconda's Spyder. I've tried the following:
pip install scipy-stack # this couldn't find any downloads that satisfy scipy-stack
pip install _fblas # this wasn't found
pip install ipython # this was successful
pip install scikit-learn # this was successful
pip install scipy # this was successful
I tried downloading SciPy and SciPy-Stack and scitkit-image from http://www.lfd.uci.edu/~gohlke/pythonlibs/
but I don't know what's wrong - it seems all the links are broken. My download always fails midway. Is there any way out of this? (Without having to re-install Anaconda Spyder from scratch)?