I Can't Install opencv python3.8

Viewed 19
[cnahl@localhost ]$ pip install opencv_python-3.4.11.43-cp38-cp38-manylinux2014_x86_64.whl 
Processing ./opencv_python-3.4.11.43-cp38-cp38-manylinux2014_x86_64.whl

ERROR: Wheel 'opencv-python' located at /home/cnahl/文档/opencv_python-3.4.11.43-cp38-cp38-manylinux2014_x86_64.whl is invalid.

I tried installing opencv using the pip install opencv, but I got this error code instead. I'll really use y'alls help. Python is 3.8. I'm sure the file in this path exists.

1 Answers

pip install opencv-python==3.4.11.43

Seems to me a good alternative.

Related