用PIP 安装或升级python遇到错误提示

$ pip install pythons

Collecting pythons

  Could not find a version that satisfies the requirement pythons (from versions: )

No matching distribution found for pythons

 

用PIP 安装或升级python遇到错误提示

这是因为网络的问题,需要使用国内的镜像源来加速,比如豆瓣源

命令改为:

pip install scikit-image -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

或者

pip3 install scikit-image -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

相关文章:

  • 2022-12-23
  • 2021-12-04
  • 2022-12-23
  • 2022-01-11
  • 2021-11-19
  • 2021-06-12
  • 2021-05-30
猜你喜欢
  • 2021-05-19
  • 2022-12-23
  • 2021-11-22
  • 2021-11-26
  • 2022-12-23
  • 2022-01-21
  • 2022-12-23
相关资源
相似解决方案