centos下python pip3配置阿里源
用pip官方源,下载速度很慢,可以替换成国内源,会快很多。
更换阿里pip源
mkdir ~/.pip
touch ~/.pip/pip.conf
vi ~/.pip/pip.conf
修改文件内容为
[global]
index-url=https://mirrors.aliyun.com/pypi/simple
[install]
trusted-host=mirrors.aliyun.com
尝试安装packages,验证下是否已更换为阿里源。
sudo pip3 install virtualenv virtualenvwrapper
其他国内的pip源
豆瓣 https://pypi.douban.com/simple
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple
中国科学技术大学 https://pypi.mirrors.ustc.edu.cn/simple
引用链接
[1]
jwldata.com: https://www.jwldata.com