web-dev-qa-db-fra.com

Impossible d'importer le module cv2 (Python 3.6)

total total ici.

J'essaie en vain d'installer le module cv2 pour Python mais cela ne fonctionne pas. Je travaille avec Python 3.6 (64bits)

J'ai tapé les commandes suivantes dans le 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

J'ai essayé de chercher des réponses sur ce site mais je n'ai pas pu en trouver. La chose la plus précise que j'ai trouvée est que: https://breakthrough.github.io/Installing-OpenCV/ mais il me semble que je dois revenir à une ancienne version de Python?

3
Janjouneh

Essayer de faire:

pip3 install opencv-python
4
Panzram

Cela fonctionne pour python 3.5

Pour python 3.6 Les méthodes conda install opencv et conda install -c conda-forge opencv pour OpenCV restent interrompues pour la lecture et l’affichage de vidéos/images. 

Utilisez plutôt pip install ci-dessous:

python -m pip installer opencv-python

Référence: https://www.scivision.co/install-opencv-python-windows/

1
Samer Ayoub