Comment installer Open CV2 pour Python 3.6 sous Windows


L'installation d'Opencv sur un ordinateur Windows est un peu difficile.

Lorsque vous exécutez


pip install opencv

Vous commencez à obtenir de nombreuses erreurs comme : dll build failed, python version not match and so on

main-qimg-c14d80d8662e032c31f947798c4ead04 main-qimg-92de31778c8bd4dd26fbd092cd5d0875

Parlons de la solution

Si vous utilisez anaconda alors il sera très facile d'installer opencv.

Ouvrir Anaconda invite:

conda create -n opencv python=3.8

Il créera un nouvel environnement avec le nom opencv et la version de python sera 3.8. Vous pouvez changer le nom de l'environnement ou la version de python en remplaçant respectivement opencv et 3.8.

conda activate opencv

Il activera l'environnement opencv. Now time to install opencv.

pip install opencv -python

It will install opencv in opencv environment that we have activated in our previous cmd.

Now, time to check opencv installation version.

python

cv2.__version__

All cmd in one place

conda create -n opencv python=3.6

pip install opencv -python

pip install opencv -python

python

cv2.__version__

main-qimg-054d1e574fd8964028e10b7df9228a69

To open opencv environment, first you have to activate opencv environment and then jupyter notebook.

conda activate opencv

jupyter-notebook

create new notebook and type

import cv2

main-qimg-9714a85559fe3ac22ca5ba9a98194403 main-qimg-d391b50205a02dc0ed5590612db2c3e0

Congrats, you have installed opencv successfully.