Maison > Article > développement back-end > Pourquoi ne puis-je pas importer cv2 dans mon programme Python après avoir installé OpenCV ?
Dépannage : "Impossible de trouver le module cv2" lors de l'utilisation d'OpenCV
Problème :
Après en installant OpenCV sur un Raspberry Pi exécutant Occidentalis, l'importation de cv2 dans un programme Python entraîne une erreur : "ImportError : Aucun module nommé cv2."
Solution :
Confirmer que le fichier cv2.so se trouve bien dans /usr/local/lib/python2.7/site-packages/...
Causes potentielles :
Résolution :
Pour Windows :
Mettre à jour conda et conda-navigator :
conda update anacoonda-navigator conda update navigator-updater
Installer OpenCV avec pip :
pip install opencv-python
Vous pouvez également installer OpenCV avec conda :
conda install -c https://conda.binstar.org/menpo opencv
Pour Linux :
Installez OpenCV avec pip :
pip install opencv-python
Vous pouvez également installer OpenCV avec conda :
conda install opencv
Pour Python 3.5 :
Reportez-vous aux liens ci-dessous pour des instructions supplémentaires :
Alternative Anaconda :
Si Anaconda est installé, vous pouvez également utiliser :
conda install -c conda-forge opencv
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!