不要忽略“WARNING: There was an error checking the latest version of pip.”问题

虽然pip的版本不升级在大多数情况下不会造成影响,但是在安装某些软件包时会出现莫名其妙的安装不成功,所以出现需要的升级的情况最好及时升级

解决方法:升级pip

共有如下四种方式升级pip

1、

python -m pip install --upgrade pip

2、在此种方法中若出现软件包下载不下来的情况,可以转到其他源来安装,例如。我用此方法升级成功。

pip install --upgrade pip

pip install --upgrade pip -i https://pypi.tuna.tsinghua.edu.cn/simple

3、

python3 -m pip install --upgrade pip

4、

python -m pip install -U --force-reinstall pip

python 镜像安装



阿里云 https://mirrors.aliyun.com/pypi/simple/
  中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
  豆瓣(douban) http://pypi.douban.com/simple/
  清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
  中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
eg:
pip install scrapy -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install torch -i https://mirrors.aliyun.com/pypi/simple
pip install torchvision -i https://mirrors.aliyun.com/pypi/simple

参考资料链接:https://www.cnblogs.com/arsonist/p/16964394.html

你可能感兴趣的:(pip,python,linux)