티스토리 뷰
MachineLearning
[ML] import cv2 cannot open shared object file no such file or directory
SweetDev 2022. 2. 23. 16:14import cv2를 했는데
"""
cannot open shared object file no such file or directory
ImportError: libGL.so.1: cannot open shared object file: No such file or directory
"""
에러가 난다면 libgl이 서치가 안되어서 실행이 안될 확률이 높다.
apt-get install libgl1-mesa-glx
pip install opencv-python
하니까 잘 되는 모습을 볼 수 있다.
만약
ModuleNotFoundError: No module named 'cv2'
에러가 뜬다면
pip install opencv-python
으로 설치해주면 된다.
'MachineLearning' 카테고리의 다른 글
[ML] matplotlib로 이미지 보여주기 (0) | 2022.02.28 |
---|---|
[ML][PyTorch] WandB사용법 (0) | 2022.02.25 |
ILSVRC (0) | 2022.02.08 |
[PyTorch] nn.Linear (0) | 2022.02.07 |
[Matplotlib] Bar, Line, Scatter Plot 그리기 (0) | 2022.02.03 |