Install python-opencv

Recently to use in python opencv.

Some colleagues found is imported.

import cv2

I thought this is too simple, right. direct:

pip install cv2

did not expect

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

It was discovered later that this was installed:

You must first install numpy.

After again

pip3 install opencv-python

Guess you like

Origin www.cnblogs.com/djxf/p/12058624.html