ubantu下出现 ERROR: opencv_python-3.4.2.16-cp37-cp37m-manylinux1_i686.whl is not a supported wheel on this platform.
博主环境:ubantu20.0 anaconda 虚拟环境下python3.7
opencv-python 3.4.2.16 一般的安装方式已经无法安装了,可行的方法是在清华源https://pypi.tuna.tsinghua.edu.cn/simple/opencv-python/ 上下载whl文件,然后pip install .whl,例如:
hndx-R8428-G11:~/anaconda3/envs/st-py37/lib/python3.7/site-packages$ pip3 install opencv_python-3.4.2.16-cp37-cp37m-manylinux1_i686.whl
虽然python版本是对应的,但是还是会出现:
ERROR: opencv_python-3.4.2.16-cp37-cp37m-manylinux1_i686.whl is not a supported wheel on this platform.
这是由于pip 不支持此文件名命名的whl文件,解决方法为:
1、ubantu终端下:
python -m pip debug --verbose
会显示支持的文件名:
2、基于对应的命名修改原whl文件:
原opencv_python-3.4.2.16-cp37-cp37m-manylinux1_i686.whl
改为opencv_python-3.4.2.16-cp37-cp37m-manylinux1_x86_64.whl
3、然后再pip install opencv_python-3.4.2.16-cp37-cp37m-manylinux1_x86_64.whl
同理可以安装opencv_contrib_python-3.4.2.16