前言
一般来说,原生的 pip
源在安装一些大型库的时候会显得速度有些缓慢。为 pip
添加阿里云的源能够极大加快下载速度。
步骤
pip config list
查看当前 pip 的配置
接着修改配置文件
pip config set global.index-url http://mirrors.aliyun.com/pypi/simple/
pip config set install.trusted-host mirrors.aliyun.com
完成之后可以再使用 pip config list
查看是否已经写入,如果有显示我们 设置的信息的话,那么就设置成功了。