[에러] ImportError: libSM.so.6: cannot open shared object file: No such file or directory 해결법
Machine Learning/ML 개발 2020. 8. 14. 04:08반응형
ImportError: libSM.so.6: cannot open shared object file: No such file or directory 해결법
cv2를 import할때 발생하는 에러로, 패키지간의 버전이 꼬였을 때 주로 발생하는 듯 하다.
해결하는 방법은 단순 재설치면 충분하다.
apt-get update
apt-get install -y libsm6 libxext6 libxrender-dev
pip install opencv-python
반응형