728x90
반응형
문제점 및 증상
파이썬 프로그램을 실행하였더니, 다음과 같은 오류가 발생하였습니다.
pi@raspberrypi:~/work/ $ python3 test_tracking.py
Traceback (most recent call last):
File "test_tracking.py", line 13, in
...
File "/home/pi/.local/lib/python3.7/site-packages/scipy/linalg/misc.py", line 3, in
from .blas import get_blas_funcs
File "/home/pi/.local/lib/python3.7/site-packages/scipy/linalg/blas.py", line 213, in
from scipy.linalg import _fblas
ImportError: libf77blas.so.3: cannot open shared object file: No such file or directory
해결 방법
해결 방법은 단순합니다. "libatlas-base-dev" 패키지를 설치하고, 다시 실행하면 됩니다.
pi@raspberrypi:~/work/hunature_TEST $ sudo apt-get install libatlas-base-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
libatlas3-base
Suggested packages:
libatlas-doc liblapack-doc
The following NEW packages will be installed:
libatlas-base-dev libatlas3-base
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
...
update-alternatives: using /usr/lib/arm-linux-gnueabihf/atlas/liblapack.so to provide /usr/lib/arm-linux-gnueabihf/liblapack.so (liblapack.so-arm-linux-gnueabihf) in auto mode
Processing triggers for libc-bin (2.28-10+rpt2+rpi1+deb10u1) ...
이후, 프로그램을 다시 실행하였더니 정상적으로 잘 실행되었습니다.
참고자료
- "libf77blas.so.3: cannot open shared file: no such file or directory":https://github.com/numpy/numpy/issues/14772
'프로그래밍 > Python' 카테고리의 다른 글
[Python] 엑셀 파일을 열고, 배열 데이터 입력하기 (0) | 2023.01.17 |
---|---|
[Python] 새로운 엑셀파일을 만들고 데이터 입력하기 (0) | 2023.01.16 |
[Python] numpy.core.multiarray failed to import (0) | 2022.10.17 |
[Python] libcblas.so.3: cannot open shared object file: No such file or directory (0) | 2022.10.14 |
[python] NumPy에서 2차원 배열에서 각 열의 평균을 구하는 방법 (0) | 2022.10.08 |