2017-07-09 5 views
0

Ich bekomme diesen Fehler beim Versuch, numpy in Python-3.6 zu installieren.numpy Fehler in Python-3.6

Traceback (most recent call last): 
    File "C:\Python\Python36-32\lib\site-packages\numpy\core\__init__.py", line 16, in <module> 
    from . import multiarray 
ImportError: DLL load failed: The specified procedure could not be found. 

During handling of the above exception, another exception occurred: 

Traceback (most recent call last): 
    File "<pyshell#0>", line 1, in <module> 
    import numpy 
    File "C:\Python\Python36-32\lib\site-packages\numpy\__init__.py", line 142, in <module> 
    from . import add_newdocs 
    File "C:\Python\Python36-32\lib\site-packages\numpy\add_newdocs.py", line 13, in <module> 
    from numpy.lib import add_newdoc 
    File "C:\Python\Python36-32\lib\site-packages\numpy\lib\__init__.py", line 8, in <module> 
    from .type_check import * 
    File "C:\Python\Python36-32\lib\site-packages\numpy\lib\type_check.py", line 11, in <module> 
    import numpy.core.numeric as _nx 
    File "C:\Python\Python36-32\lib\site-packages\numpy\core\__init__.py", line 26, in <module> 
    raise ImportError(msg) 
ImportError: 
Importing the multiarray numpy extension module failed. Most 
likely you are trying to import a failed build of numpy. 
If you're working with a numpy git repo, try `git clean -xdf` (removes all 
files not under version control). Otherwise reinstall numpy. 

Original error was: DLL load failed: The specified procedure could not be found. 
+0

Dasselbe Problem mit Python 3.6. Ich habe das Problem gerade gelöst, indem ich Pillow (4.1.0) deinstalliert und dann eine ältere Version von Pillow (4.0.0) installiert habe (pip install Pillow == 4.0.0) – sera

Antwort

0

Aktualisieren Sie Python zu 3.6.1 und sehen Sie, ob es hilft. Dies hängt möglicherweise mit this issue zusammen, wo Erweiterungen, die mit Python 3.6.1 erstellt wurden, nicht auf 3.6.0 funktionieren

Verwandte Themen