python 下载包报错处理

报错信息:[notice] A new release of pip available: 22.2 -> 22.2.2
[notice] To update, run: python.exe -m pip install --upgrade pip

原因:pip有新版本了,系统建议升级最新版pip再去安装库

处理方法

1.网上找到5种处理方式,有人处理好了,我更新的时候一直会报超时

在cmd控制台运行(5选1)

python.exe -m pip install --upgrade pip

python -m pip install --upgrade pip

pip install --upgrade pip

python3 -m pip install --upgrade pip

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

2.后来我是在pycharm 手动把pip包更新到最新版本,然后在下载包就可以了。

python 下载包报错处理_第1张图片

 

你可能感兴趣的:(python,开发语言)