明天用 pip 装置一些罕用库,而后呈现以下这段代码。
须要降级一下 pip
WARNING: You are using pip version 20.3.1; however, version 21.3.1 is available.
You should consider upgrading via the 'c:\program files\python\python.exe -m pip install --upgrade pip' command
参考
阿里巴巴开源镜像站
首先切换应用国内阿里巴巴的 pypi 镜像源
a. 找到下列文件(windows 目录:C:\Users\Administrator)
~/.pip/pip.conf
b. 在上述文件中增加或批改:
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com
接着降级 pip
cmd 下输出:python -m pip install --upgrade pip
ok
接着就能够持续应用 pip install xxxxx 装置库了