一、问题

我的问题是用pip安装包pip installupgrade setuptools)的时候出现问题: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.

spyder 5.1.5 requires pyqt5<5.13, which is not installed.

spyder 5.1.5 requires pyqtwebengine<5.13, which is not installed.

condarepocli 1.0.4 requires pathlib, which is not installed.

anacondaproject 0.10.2 requires ruamelyaml, which is not installed.

从问题提示来看,就是pip依赖解析器当前考虑安装的所有包。此行为是以下依赖项冲突的根源。

二、解决办法

我就根据错误提示,分别重新安装了以上四个版本要求的包,不再截图,把代码附上:

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple  " pyqt5<5.13"
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple  " pyqtwebengine<5.13"
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple  pathlib
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple   ruamel-yaml

然后没有报错了。

原文地址:https://blog.csdn.net/weixin_44692055/article/details/128549899

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_40458.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注