【Bug】ERROR: Could not find a version that satisfies the requirement pip (from versions: none)

目录

一、问题

二、报错原因

三、解决办法

四、总结


一、问题

【Bug】ERROR: Could not find a version that satisfies the requirement pip (from versions: none)_第1张图片

今天在升级pip的时候发生了如下的报错问题:

ERROR: Could not find a version that satisfies the requirement pip (from versions: none)
ERROR: No matching distribution found for pip

报错内容翻译:

错误:找不到满足要求的版本pip(来自版本:none)

错误:找不到与pip匹配的分发

二、报错原因

        我们经常通过pip安装东西时常常会出现ERROR: Could not find a version that satisfies the requirement xxx的问题。该问题常常会误导我们认为是下载的安装包之间存在冲突,因而花费大量的时间去配置各种各样的环境。


        其实出现这个问题的原因是python国内网络不稳定,直接导致报错。

三、解决办法

我们直接在命令的最后加上镜像源就行了

python -m pip install -U --force-reinstall pip -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

【Bug】ERROR: Could not find a version that satisfies the requirement pip (from versions: none)_第2张图片

至此,问题得以解决。

四、总结

以上是我们的解决问题过程,仅供参考。

你可能感兴趣的:(Python,bug,pip)