Ich versuche, den folgenden einfachen Code auszuführen
import scipy
scipy.test()
Aber ich bekomme folgenden Fehler
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python27\lib\site-packages\spyderlib\widgets\externalshell\sitecustomize.py", line 586, in runfile
execfile(filename, namespace)
File "C:/Users/Mustafa/Documents/My Python Code/SpectralGraphAnalysis/main.py", line 8, in <module>
import scipy
File "C:\Python27\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
Ich verwende Python 2.7 unter Windows 10.
Ich habe installiert, scipy
aber das scheint das Problem nicht zu lösen
Jede Hilfe wird geschätzt.