web-dev-qa-db-ja.com

cv2モジュールをインポートできません(Python 3.6)

ここで合計nexwbie。

python)のcv2モジュールをインストールしようとして失敗しましたが、機能しません。 Python 3.6(64ビット)

Cmdに次のコマンドを入力しました。

C:\Users\leahj>C:\Users\leahj\AppData\Local\Programs\Python\Python36\Scripts\pip3 install cv2
Collecting cv2
  Could not find a version that satisfies the requirement cv2 (from versions: )
No matching distribution found for cv2

C:\Users\leahj>C:\Users\leahj\AppData\Local\Programs\Python\Python36\Scripts\pip3 install opencv
Collecting opencv
  Could not find a version that satisfies the requirement opencv (from versions: )
No matching distribution found for opencv

C:\Users\leahj>C:\Users\leahj\AppData\Local\Programs\Python\Python36\Scripts\pip3 install opencv2
Collecting opencv2
  Could not find a version that satisfies the requirement opencv2 (from versions: )
No matching distribution found for opencv2

このサイトで回答を探しましたが見つかりませんでした。私が見つけた最も正確なものは次のとおりです: https://breakthrough.github.io/Installing-OpenCV/ しかし、古いバージョンのPython?

7
Janjouneh

やってみてください:

pip3 install opencv-python
4
Panzram

python 3.5で動作します

python 3.6の場合OpenCVのconda install opencvおよびconda install -c conda-forge opencvメソッドは、ビデオ/画像の読み取りと表示のために引き続き壊れています。

代わりに以下のpip installを使用してください:

python -m pip install opencv-python

リファレンス: https://www.scivision.co/install-opencv-python-windows/

1
Samer Ayoub