修改 pip 源

有些时候我们用国内的云服务器,用系统自带安装的 python pip 源下载就会很慢,甚至是超时,这个时候我们可以通过修改 pip 源来改善这一问题,具体指令:

pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/

如果我们要改回默认的可以运行指令:

pip config unset global.index-url