Lorsque je fabriquais les matériaux pour l'expérience TA, j'avais besoin de dessiner une carte avec python, donc je prévoyais de la pratiquer pendant que je prévoyais d'utiliser la cartopie, mais je me suis dit: "Souhaitez-vous également utiliser le fond de carte?" , Quand je l'ai installé, j'ai eu une erreur d'importation de numpy et j'étais impatient (je pensais qu'Anaconda3 était mort ...)
Eh bien, la raison pour laquelle j'ai pensé à cela est que lors du traçage de la source et du point d'observation avec obspy (module d'analyse des ondes sismiques), il semble nécessaire d'importer la ligne de base. .. ..
Ensuite, lorsque j'exécute le code après l'avoir installé, j'obtiens l'erreur suivante. ..
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
Je pensais que c'était quelque chose, alors j'ai beaucoup essayé.
・ Améliorer le conda ・ Réinsérez numpy
etc. .. Je ne voulais pas réinstaller anaconda3 si possible. Je l'ai beaucoup personnalisé et je ne sais même pas quoi mettre à nouveau. .. .. Eh bien, la solution a été résolue en lisant correctement le début de l'erreur.
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
Eh bien, tout ce que j'avais à faire était de mettre "openblas". On dirait qu'il a été inclus à l'origine? J'ai pensé, mais cela a résolu le problème pour le moment.