今天用pip安装skimage时报错:

pip安装python包出错:Could not find a version that satisfies the requirement skimage (from versions: )

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

命令改为:

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

最后成功安装:

pip安装python包出错:Could not find a version that satisfies the requirement skimage (from versions: )

 

相关文章:

  • 2022-12-23
  • 2021-11-07
  • 2021-10-19
  • 2021-10-21
  • 2021-07-29
  • 2021-12-11
  • 2021-12-21
猜你喜欢
  • 2021-12-16
  • 2021-09-24
  • 2022-12-23
  • 2022-12-23
  • 2021-08-29
  • 2021-07-25
相关资源
相似解决方案