작심삼일

[opencv 에러] ImportError: libGL.so.1: cannot open shared object file: No such file or directory 본문

정리/잡 에러들

[opencv 에러] ImportError: libGL.so.1: cannot open shared object file: No such file or directory

yun_s 2022. 7. 11. 11:25
728x90
반응형

에러

opencv를 설치한 후에 import cv2를 하면 다음과 같은 에러를 만날 때가 있다.

ImportError: libGL.so.1: cannot open shared object file: No such file or directory

해결 방법

apt-get install libgl1-mesa-glx

위 커맨드를 실행하면 된다.

만약 위 커맨드를 실행할 때 에러가 난다면 아래 명령어로 apt-get을 업데이트 해보자.

apt-get update
728x90
반응형
Comments