Installed opencv but having trouble importing it
python - Cannot find module cv2 when using OpenCV - Stack Overflow
python - No module named 'cv2' even though I installed it - Stack Overflow
ModuleNotFoundError: No module named 'cv2'
Videos
First do run these commands inside Terminal/CMD:
conda update anaconda-navigator
conda update navigator-updater
Then the issue for the instruction below will be resolved
For windows if you have anaconda installed, you can simply do
pip install opencv-python
or
conda install -c https://conda.binstar.org/menpo opencv
if you are on linux you can do :
pip install opencv-python
or
conda install opencv
Link1 Link2
For python3.5+ check these links : Link3 , Link4
Update:
if you use anaconda, you may simply use this as well (and hence don't need to add menpo channel):
conda install -c conda-forge opencv
This happens when python cannot refer to your default site-packages folder where you have kept the required python files or libraries
Add these lines in the code:
import sys
sys.path.append('/usr/local/lib/python2.7/site-packages')
or before running the python command in bash move to /usr/local/lib/python2.7/site-packages directory. This is a work around if you don't want to add any thing to the code.
Hi, I really need help. I've been crying about why it's not working for 2 hours. I know this error is very famous and common for python, but I can't fix this at all.
So, I was trying a few hand-tracking codes, with the code "import cv2" but all of the codes ended up saying ModuleNotFoundError: No module named 'cv2'.
I have done installing these codes already,
- pip3 install OpenCV-python
- pip3 install OpenCV-contrib-python
I'm using Python(Python3) 3.10(64bit), Spyder as software, Conda 4.12.0
I am quite new to python, so I may ask lots of basic questions. please help me.