前提・実現したいこと
Raspberry Pi3でPython3.5.3を使用していますが、numpyをインポートすることができず困っています。
Pythonでnumpyをインポートできるようにしたいです。
発生している問題・エラーメッセージ
import numpyを実行すると以下のエラーメッセージで出てきます。
>>> import numpy Traceback (most recent call last): File "/home/pi/.local/lib/python3.5/site-packages/numpy/core/__init__.py", line 17, in <module> from . import multiarray File "/home/pi/.local/lib/python3.5/site-packages/numpy/core/multiarray.py", line 14, in <module> from . import overrides File "/home/pi/.local/lib/python3.5/site-packages/numpy/core/overrides.py", line 7, in <module> from numpy.core._multiarray_umath import ( ImportError: libf77blas.so.3: cannot open shared object file: No such file or directory During handling of the above exception, another exception occurred: Traceback (most recent call last): File "<pyshell#11>", line 1, in <module> import numpy File "/home/pi/.local/lib/python3.5/site-packages/numpy/__init__.py", line 142, in <module> from . import core File "/home/pi/.local/lib/python3.5/site-packages/numpy/core/__init__.py", line 47, in <module> raise ImportError(msg) ImportError: 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.5 from "/usr/bin/python3", and that you have no directories in your PATH or PYTHONPATH that can interfere with the Python and numpy version "1.17.3" 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: libf77blas.so.3: cannot open shared object file: No such file or directory
該当のソースコード
ソースコード
試したこと
「sudo pip3 show numpy」を実行するとnumpyはインストールされている。
numpyのバージョンはV1.17.4
Name: numpy Version: 1.17.4 Summary: NumPy is the fundamental package for array computing with Python. Home-page: https://www.numpy.org Author: Travis E. Oliphant et al. Author-email: None License: BSD Location: /usr/local/lib/python3.5/dist-packages Requir__es: Pathにdist-packagesが含まれていることは確認しました。 >>> sys.path ['', '/home/pi', '/usr/bin', '/usr/lib/python35.zip', '/usr/lib/python3.5', '/usr/lib/python3.5/plat-arm-linux-gnueabihf', '/usr/lib/python3.5/lib-dynload', '/home/pi/.local/lib/python3.5/site-packages', '/usr/local/lib/python3.5/dist-packages', '/usr/lib/python3/dist-packages'] numpyのインストール、再インストールを実施しましたが、症状は改善せず。 ### 補足情報(FW/ツールのバージョンなど) Python3.5.3 Python3 IDLE
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/24 15:13
2019/11/30 07:36