OpenCV lectures

How to install OpenCV…please help me to install it.

Hey @rohit_2425, use the following command to install open-cv in your anaconda prompt :

conda install -c conda-forge opencv

I hope this helps !
Happy Learning ! :slightly_smiling_face:

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.

I had installed opencv in my computer but when i import in jupiter notebook, its show ModuleNotFoundError: No module named ‘cv2’ error. please help me to short out this problem.

If OpenCV is installed on your system but Python cannot find it, you will get the “no module named ‘cv2’” error message. This can happen if OpenCV is not in the Python path. The Python path is a list of directories where Python looks for modules and packages. You can check the Python path by running the following command in your terminal or command prompt:

python -c "import sys; print(sys.path)"

This will print out the directories in the Python path. Make sure that the directory where OpenCV is installed is included in the Python path.