Reputation: 229
I am trying to install opencv
in python
on my windows machine but I am unable to do so. I have python 2.7.11::Anaconda 2.4.1 <32-bit>
Here is what I have tried till now -
pip install cv2
on command line gives the error :could not find a version that satisfies the requirement cv2
C:\Python27\Lib\site-packages
but still it is
not working. I get the following error messageImportError: No module named cv2
(I already have numpy installed and it works just fine).
Upvotes: 22
Views: 78717
Reputation: 11
You can use the:
pip install opencv-contrib-python
You can also use the pip3 install opencv-python command
Upvotes: 1
Reputation: 1
So I was using PyCharm, and what worked for me was to install it directly from file->settings, Project:your-project-name->Python Interpreter list
Upvotes: 0
Reputation: 17
I was able to solve the error.
If you are using python version 3 , sometimes you have to use pip3.
pip3 install opencv-python
Make sure you are using python 3 , it won't work for python 2.
Upvotes: 2
Reputation: 469
pip install opencv-python
you can type this instead of
pip install cv2
it also works with anaconda pro
Upvotes: 44