Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install opencv-python in python 3.8

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?

like image 699
JayJona Avatar asked Nov 16 '19 15:11

JayJona


People also ask

Does Python 3.7 support OpenCV?

Install python 3.7 with anaconda package and use this command to install opencv.


2 Answers

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

like image 126
Ofer Sadan Avatar answered Oct 02 '22 10:10

Ofer Sadan


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

I hope this is useful for everybody

like image 20
Amir Souissi Avatar answered Oct 02 '22 10:10

Amir Souissi