我正在尝试使用命令 pip install opencv-contrib-python 安装 opencv-python 但在下载某些部分后,它说
ERROR: THESE PACKAGES DO NOT MATCH THE HASHES FROM THE REQUIREMENTS FILE. If you have updated the package versions, please update the hashes. Otherwise, examine the package contents carefully; someone may have tampered with them.
unknown package:
Expected sha256 47ec3160dae75f70e099b286d1a2e086d20dac8b06e759f60eaf867e6bdecba7
Got e091e7d60388b8d6b7e08c4a396b7705498eafee5e70e3cae1705c9db6c6a83f
我正在研究一些其他命令,但它们不起作用。使用 pip install opencv-python 时它可以正确安装,但我必须使用 contrib 文件
可以通过更新 pip 来解决此问题:pip install --upgrade pip,然后使用 pip cache purge 清除 pip 缓存。