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.
时间: 2023-07-06 17:35:29 浏览: 253
修复 there was an error checking the latest version of pip
这是一个 pip 解析依赖时出现的错误,提示缺少 face-recognition 所需的 Click>=6.0 包。你可以尝试先安装 Click 包,然后再安装 face-recognition,命令如下:
```
pip install Click>=6.0
pip install face-recognition
```
如果还有其他依赖冲突,可以尝试升级 pip 版本或使用 virtualenv 等工具来隔离不同的 Python 环境。
阅读全文