前提・実現したいこと
こんにちは。ここで初めて質問させていただきます。
vscodeでnumpyをimportしたいのですが、importできなくて本当に困っています。初歩的な質問かもしれませんがどうかご回答していただけると幸いです。使っているのはMacOSです。
発生している問題・エラーメッセージ
import numpy を実行したのような文が出ました。
エラーメッセージ Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/numpy/core/__init__.py", line 24, in <module> from . import multiarray File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/numpy/core/multiarray.py", line 14, in <module> from . import overrides File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/numpy/core/overrides.py", line 7, in <module> from numpy.core._multiarray_umath import ( ModuleNotFoundError: No module named 'numpy.core._multiarray_umath' During handling of the above exception, another exception occurred: Traceback (most recent call last): IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE! Importing the numpy c-extensions failed. - Try uninstalling and reinstalling numpy. - If you have already done that, then: 1. Check that you expected to use Python3.9 from "/Library/Frameworks/Python.framework/Versions/3.9/bin/python3", and that you have no directories in your PATH or PYTHONPATH that can interfere with the Python and numpy version "1.18.2" you're trying to use. 2. If (1) looks fine, you can open a new issue at https://github.com/numpy/numpy/issues. Please include details on: - how you installed Python - how you installed numpy - your operating system - whether or not you have multiple versions of Python installed - if you built from source, your compiler versions and ideally a build log - If you're working with a numpy git repository, try `git clean -xdf` (removes all files not under version control) and rebuild numpy. Note: this error has many possible causes, so please don't comment on an existing issue about this - open a new one instead. Original error was: No module named 'numpy.core._multiarray_umath'
このエラーはvscodeのターミナルでおきましたが、vscodeを通さずにターミナルで対話モードでimport しようとした時も同様のことが起きました。
該当のソースコード
python
1ソースコード 2import numpy
試したこと
- pip show numpy コマンドによりnumpy がインストールされていることと、numpy へのpath が
/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages
であることを確認しました。
- sys.pathを実行し、
'/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages',
つまり1のpathがsys.pathの要素に含まれていることを確認しました。なお、これはターミナルでzshrc に以下の文を追加しました。
export PYTHONPATH="/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages"
これでnumpyへのpathを通せたと思ったのですが上記のようなエラーとなってしました。
補足情報(FW/ツールのバージョンなど)
python3 〜.pyでプログラムをvscodeで実行しています。python3 --version をした結果バージョンは3.9.0でした。pythonのバージョンがいくつか入ってしまっているのもできない可能性としてあり得るのかなと思っています。いろいろ調べたのですが解決できませんでした。どうがご回答よろしくお願いします。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/25 09:11
2020/10/25 09:19
2020/10/25 09:20
2020/10/25 09:35
2020/10/25 09:42
2020/10/25 12:00
2020/10/25 13:33