问题

pip安装jupyter包或者其他包时提示
Package ‘zipp’ requires a different Python: 3.5.2 not in '>=3.6’或者
Package ‘xxxxx’ requires a different Python: xxxx not in ‘>=xxxx’
Package 'zipp' requires a different Python: 3.5.2 not in '>=3.6'

问题原因

原因是原来安装的该包太新了, 安装新包依赖的包比这个旧所以安装失败

解决方法

这里以我的zipp包为例

  1. 先把这个包卸载,pip list查看所有的包, pip3 uninstall 包名把包卸载掉
    Package 'zipp' requires a different Python: 3.5.2 not in '>=3.6'
  2. 再直接去安装想安装的包即可
    `pip3 install jupyter’: 然后直接安装新包

相关文章:

  • 2022-01-01
  • 2021-10-18
  • 2021-05-19
  • 2022-12-23
  • 2022-12-23
  • 2021-12-05
  • 2021-11-19
  • 2022-12-23
猜你喜欢
相关资源
相似解决方案