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?

More than 3 years have passed since last update.

Cannot import cv2 module.

Last updated at Posted at 2021-11-01

ことの始まり

enrootコンテナ等でGPUを使ったプログラムを動かそうとしていた時に起きたエラー

出てきたエラー
RuntimeError: Cannot import cv2 module. Please install OpenCV-Python to use WarpFrame.

解決に至ったコマンド

apt-get update
apt-get install libgl1-mesa-dev
上記2つのコマンドを入力し、cv2がimportできるか確認したらできた。
それまでに色々入れていたので、もしかしたらそれが効いたかも
また同じ方法でコンテナを作って確認したい。

やったこと

まずpythonのREPLでcv2がいけないのかを確認
>>> import cv2
すると出るエラー

コマンドライン
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/opt/conda/lib/python3.8/site-packages/cv2/__init__.py", line 5, in <module>
    from .cv2 import *
ImportError: libGL.so.1: cannot open shared object file: No such file or directory

なのでこのエラー文をググったら以下のサイト様に辿り着いた
https://cocoinit23.com/docker-opencv-importerror-libgl-so-1-cannot-open-shared-object-file/
このサイト様通りにやったら治り、プログラムも動いたのでokとした。

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?