Unable to install cv2 in Pycharm

Displayed message: ERROR: Could not find a version that satisfies the requirement cv2 (from versions: none)
ERROR: No matching distribution found for cv2

You are getting those errors because opencv and cv2 are not the python package names.

These are both included as part of the opencv-python package available to install from pip.

try these commands to install from the command line, make sure you have python set as environment variable.
pip3 install opencv-python
python -m pip install opencv-python

1 Like

It worked, thank you!

worked immediately, thanks!