0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

OpenCV インポートエラー

Last updated at Posted at 2025-02-20

OpenCV インポートエラーメモ

ImportError: libGL.so.1: cannot open shared object file: No such file or directory
  • GUIを使わない場合はopencv-python-headlessを使用するとlibGL.so.1に依存しない
pip uninstall opencv-python
pip install opencv-python-headless
python
>>>import cv2
>>>
  • スタンダードな解決方法
sudo apt update
sudo apt install -y libgl1-mesa-glx
# apt-get install -y libglib2.0-0 libsm6 libxrender1 libxext6
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?