ubuntu默认pip源为国外源,速度较慢,以及有时有连接不上的情况。可以设置成国内的源以提高下载速度和稳定性。
pip/pip3用于python软件模块下载,通过~/.pip/pip.conf文件配置,如果没有这个目录和文件,可以生成一个进行设置,如下
mkdir ~/.pip
vim ~/.pip/pip.conf
填入以下内容:
[global]
index-url = http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host = mirrors.aliyun.com
之后更新
pip install update
这样就切换成国内源了,安装时速度非常快。
其它的源设置类似,只需要修改服务器即可,如清华源等:
清华大学
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = pypi.tuna.tsinghua.edu.cn
网友评论