Chips beim Umgang mit dem Fehler im Betreff.
Der folgende Fehler trat auf, als ptyhon der virtuellen Umgebung von Anaconda direkt an der DOS-Eingabeaufforderung ausgeführt wurde, ohne dass die Bedingung in Anaconda aktiviert wurde.
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "common/utils/create_project_schema.py", line 5, in <module>
import numpy as np
File "c:\ProgramData\Anaconda3\envs\hogehoge\lib\site-packages\numpy\__init__.py", line 142, in <module>
from . import core
File "c:\ProgramData\Anaconda3\envs\hogehoge\lib\site-packages\numpy\core\__init__.py", line 50, in <module>
raise ImportError(msg)
ImportError:
IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!
Importing the numpy C-extensions failed. This error can happen for
many reasons, often due to issues with your setup or how NumPy was
installed.
We have compiled some common reasons and troubleshooting tips at:
https://numpy.org/devdocs/user/troubleshooting-importerror.html
Please note and check the following:
* The Python version is: Python3.7 from "c:\ProgramData\Anaconda3\envs\hogehoge\python.exe"
* The NumPy version is: "1.18.5"
and make sure that they are the versions you expect.
Please carefully study the documentation linked above for further help.
Original error was: DLL load failed:Das angegebene Modul wurde nicht gefunden.
Bei genauerer Betrachtung des Unterschieds zwischen der Umgebungsvariablen PATH der Anaconda-Eingabeaufforderung und der MS DOS-Eingabeaufforderung war die Ursache der folgende unzureichende Pfad.
C:\ProgramData\Anaconda3\envs\<Name der virtuellen Umgebung>\Library\bin
Gelöst durch Festlegen der obigen Angaben in der Systemumgebungsvariablen. Es tritt möglicherweise nicht in Python3.6 auf oder ändert sich je nach Installation von Anaconda, jedoch als Referenz.
Recommended Posts