7

I'm having problem during the installation of opencv-python in pycharm. After opening pycharm I click on settings and then project interpreter, I click on '+' and search for the correct module, I started the installation but it fails with

Could not find a version that satisfies the requirement opencv-python (from versions: )
No matching distribution found for opencv-python

Additionally I tried installing it through console but I get the same error. I also have updated to the last pip version, how can I solve this?

1
  • Yes, it is @OferSadan Commented Nov 16, 2019 at 17:18

3 Answers 3

7

EDIT / UPDATE: You can now install through pip, support was added to python 3.8

OpenCV is not yet (officially) compatible with python 3.8. this version of python is quite new and lots of pip packages can't be installed on it (yet). You can verify that at the bottom of the PyPi page for OpenCV

Three possible solutions:

  1. Downgrade to python 3.7.5 and install the package through pip as you normally would, and wait for an officially supported version before trying again with python 3.8
  2. Try building OpenCV from source files yourself. This might require quite a bit of technical knowledge and might ultimately fail anyway without some changes to the source. If you're interested in that solution, start here for windows or here for linux
  3. There is a pre-built wheel available here that works with python 3.8, but it is unofficial (but the source here is quite credible) - this is probably the easiest choice to set up

Also, you can track when support will come to python 3.8 in this GitHub issue

Sign up to request clarification or add additional context in comments.

2 Comments

@james no problem, added a link on where you can check the versions
@james just to update you, the version for python 3.8 is now out and you can install it though pip or through pycharm
6

Under python 3.8. Open Anaconda prompt Then type: pip install opencv-python

I hope this is useful for everybody

2 Comments

This should be the accepted answer because currently in 2021 this method allows installing opencv with Python 3.8
Also Python 3.9 Anaconda.
2

the solution to use in 3.8 is to download the .whl and install it with pip example: pip install D: \ downloads \ opencv_python-4.2.0-cp38-cp38-win_amd64.whl

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.