>>> import scipy Traceback (most recent call last): File "<stdin>", line 1, in <module> File "C:\martin\python352\lib\site-packages\scipy\__init__.py", line 61, in <module> from numpy._distributor_init import NUMPY_MKL # requires numpy+mkl ImportError: cannot import name 'NUMPY_MKL'
http://stackoverflow.com/questions/37267399/importerror-cannot-import-name-numpy-mkl
因為我的python35的scipy是用下面鏈接中的whl安裝的而numpy是用pip安裝的,少了numpy+mkl,
可以從下面鏈接下載nump的whl下載
或者直接在__init__.py注釋掉
http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy
