face-recognition 1.3.0 requires face-recognition-models>=0.3.0, which is not installed.
时间: 2023-08-07 11:07:45 浏览: 262
这是一个错误提示,意思是你需要安装 face-recognition-models 的版本大于等于 0.3.0 才能使用 face-recognition 1.3.0。可以尝试运行以下命令来安装最新版本的 face-recognition-models:
```
pip install face-recognition-models --upgrade
```
然后再尝试运行 face-recognition 1.3.0,如果还有其他问题,可以再与我交流。
相关问题
ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. face-recognition 1.3.0 requires Click>=6.0, which is not installed.
这是一个 pip 解析依赖时出现的错误,提示缺少 face-recognition 所需的 Click>=6.0 包。你可以尝试先安装 Click 包,然后再安装 face-recognition,命令如下:
```
pip install Click>=6.0
pip install face-recognition
```
如果还有其他依赖冲突,可以尝试升级 pip 版本或使用 virtualenv 等工具来隔离不同的 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. face-recognition-models>=0.3.0 from https://www.piwheels.org/simple/face-recognition-models/face_recognition_models-0.3.0-py2.py3-none-any.whl#sha256=8d6b0af2e37a17120c3f13107974bc252142a4ffcb4e58eabdfcf26608e52c24 (from face_recognition): Expected sha256 8d6b0af2e37a17120c3f13107974bc252142a4ffcb4e58eabdfcf26608e52c24 Got 3c570a23a098ac85ece994aa22c28974b18135e1832b704a7ac19d2bb1cdf27e
这是一个错误信息,通常出现在使用pip安装Python包时。它表示你安装的包的哈希值与要求文件中给出的哈希值不匹配。这可能是由于包的更新引起的,也可能是由于恶意篡改引起的。你可以尝试使用`--no-cache-dir`选项再次安装这个包,或者手动删除缓存目录。如果问题仍然存在,你可以考虑联系包的维护者或者寻求其他解决方案。
阅读全文