文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

ERROR: pip‘s dependency resolver does not currently take into account all the packages 的解决方法

2023-09-03 06:46

关注

一、问题分析

博主在PyCharm中使用pip命令 pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple 安装项目所需的依赖包,出现: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.

anaconda-project 0.9.1 requires ruamel-yaml, which is not installed.
notebook 6.3.0 requires tornado>=6.1, but you have tornado 5.1.1 which is incompatible.
jupyterlab 3.0.14 requires tornado>=6.1.0, but you have tornado 5.1.1 which is incompatible.
jupyter-server 1.4.1 requires tornado>=6.1.0, but you have tornado 5.1.1 which is incompatible.
distributed 2021.4.0 requires tornado>=6.0.3; python_version >= “3.8”, but you have tornado 5.1.1 which is incompatible.


在这里插入图片描述

从以上报错信息来看,博主环境中已安装的 notebook 6.3.0、jupyterlab 3.0.14、jupyter-server 1.4.1、distributed 2021.4.0 这几个版本的包与我现在安装 requirements.txt中的项目依赖包 qt4c、qt4w所需要的 tornado 版本不一致,说白了就是你python环境中的部分包与 tornado>=6.1.0 版本兼容,而你现在安装的项目所需要的包与 tornado==5.1.1 版本兼容,这就是问题所在。

同理现在我们安装 tornado>=6.1.0 版本,就会提示 qt4w 2.1.5tornado>=6.1.0 不兼容。

在这里插入图片描述

二、解决方法

通过以上问题分析,比较好的解决方法就是卸载不兼容 tornado==5.1.1 的包,即 notebook 6.3.0、jupyterlab 3.0.14、jupyter-server 1.4.1、distributed 2021.4.0,再重新安装即可(安装时不指定版本);因为qt4c、qt4w所需要的 tornado 版本只能是 5.1.1,所以为了兼顾两边,只能选择卸载重装。

卸载 控制台中提示不存在兼容的所有包

pip uninstall tornadopip uninstall notebook jupyterlab jupyter-server distributedpip uninstall -r requirements.txt

安装 code>tornado==5.1.1 版本

pip install tornado==5.1.1 -i https://pypi.tuna.tsinghua.edu.cn/simple/

安装 notebook jupyterlab jupyter-server distributed

pip install notebook jupyterlab jupyter-server distributed -i https://pypi.tuna.tsinghua.edu.cn/simple/

安装 requirements.txt中的项目依赖包

pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple/

另外一种方法:其实我们通过pip命令在安装包时经常会出现不兼容的提示,可以将本地pip版本进行升级后,再进行尝试安装~

python -m pip install --upgrade pip

最后说明一点:其实出现不兼容的情况,也是可以忽略不计的,虽然提示了不兼容,但是实际是安装成功的~

来源地址:https://blog.csdn.net/qq_41782425/article/details/127244859

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯