python 下载包报错处理
•
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包更新到最新版本,然后在下载包就可以了。

本文来自网络,不代表协通编程立场,如若转载,请注明出处:https://net2asp.com/5cd69b73fb.html
