Als ich die Materialien für das TA-Experiment erstellte, musste ich eine Karte mit Python zeichnen, also plante ich, sie zu üben, während ich Cartopy verwenden wollte, aber ich dachte: "Möchten Sie auch eine Grundkarte verwenden?" Als ich es installierte, bekam ich einen Importfehler von numpy und war ungeduldig (ich dachte Anaconda3 wäre tot ...)
Der Grund, warum ich darüber nachgedacht habe, ist, dass es beim Zeichnen der Quelle und des Beobachtungspunkts mit obspy (Erdbebenwellenanalysemodul) notwendig erscheint, die Basislinie zu importieren. .. ..
Wenn ich dann den Code nach der Installation ausführe, wird der folgende Fehler angezeigt. ..
numpy_error.py
Traceback (most recent call last):
File "/opt/anaconda3/lib/python3.7/site-packages/numpy/core/__init__.py", line 22, in <module>
from . import multiarray
File "/opt/anaconda3/lib/python3.7/site-packages/numpy/core/multiarray.py", line 12, in <module>
from . import overrides
File "/opt/anaconda3/lib/python3.7/site-packages/numpy/core/overrides.py", line 7, in <module>
from numpy.core._multiarray_umath import (
ImportError: dlopen(/opt/anaconda3/lib/python3.7/site-packages/numpy/core/_multiarray_umath.cpython-37m-darwin.so, 2): Library not loaded: @rpath/libopenblas.dylib
Referenced from: /opt/anaconda3/lib/python3.7/site-packages/numpy/core/_multiarray_umath.cpython-37m-darwin.so
Reason: image not found
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/opt/anaconda3/lib/python3.7/site-packages/numpy/__init__.py", line 140, in <module>
from . import core
File "/opt/anaconda3/lib/python3.7/site-packages/numpy/core/__init__.py", line 48, 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 "/opt/anaconda3/bin/python"
* The NumPy version is: "1.19.1"
and make sure that they are the versions you expect.
Please carefully study the documentation linked above for further help.
Original error was: dlopen(/opt/anaconda3/lib/python3.7/site-packages/numpy/core/_multiarray_umath.cpython-37m-darwin.so, 2): Library not loaded: @rpath/libopenblas.dylib
Referenced from: /opt/anaconda3/lib/python3.7/site-packages/numpy/core/_multiarray_umath.cpython-37m-darwin.so
Reason: image not found
Ich dachte, das wäre etwas, also habe ich ziemlich viel versucht.
・ Upgrade der Konda ・ Nummer wieder einfügen
etc. .. Ich wollte anaconda3 wenn möglich nicht neu installieren. Ich habe es sehr angepasst und weiß nicht einmal, was ich wieder einfügen soll. .. .. Nun, die Lösung wurde gelöst, indem der Anfang des Fehlers richtig gelesen wurde.
initial_error.py
Traceback (most recent call last):
File "/opt/anaconda3/lib/python3.7/site-packages/numpy/core/__init__.py", line 22, in <module>
from . import multiarray
File "/opt/anaconda3/lib/python3.7/site-packages/numpy/core/multiarray.py", line 12, in <module>
from . import overrides
File "/opt/anaconda3/lib/python3.7/site-packages/numpy/core/overrides.py", line 7, in <module>
from numpy.core._multiarray_umath import (
ImportError: dlopen(/opt/anaconda3/lib/python3.7/site-packages/numpy/core/_multiarray_umath.cpython-37m-darwin.so, 2): Library not loaded: @rpath/libopenblas.dylib
Referenced from: /opt/anaconda3/lib/python3.7/site-packages/numpy/core/_multiarray_umath.cpython-37m-darwin.so
Reason: image not found
Nun, alles was ich tun musste, war in "openblas" zu setzen. Es scheint, als wäre es ursprünglich enthalten? Ich dachte, aber das löste es vorerst.
Recommended Posts