美文网首页
pip error: --use-feature=2020-re

pip error: --use-feature=2020-re

作者: Antlers777 | 来源:发表于2021-07-20 10:50 被阅读0次

问题复现


ERROR: After October 2020 you may experience errors when installing or updating packages. This is because pip will change the way that it resolves dependency conflicts.

We recommend you use --use-feature=2020-resolver to test your packages with the new resolver before it becomes the default.

qt5-tools 5.15.2.1.2 requires click~=7.0, but you'll have click 8.0.1 which is incompatible.

原因:


pip安装版本的依赖问题

解决:


pip的提示已经明确表示

在安装命令后添加 --use-feature=2020-resolver

例如:

pip install PyQt6-tools -i https://pypi.douban.com/simple --use-feature=2020-resolver

相关文章

网友评论

      本文标题:pip error: --use-feature=2020-re

      本文链接:https://www.haomeiwen.com/subject/alplmltx.html