Skip to content

python 更换pip 和 easy_install源

更换pip源

创建一个.pip目录

[root@zabbix-server ~]# mkdir /root/.pip

编辑pip配置文件 vi /root/.pip/pip.conf 内容如下:

[global]
index-url=http://mirrors.aliyun.com/pypi/simple/

[install]
trusted-host=mirrors.aliyun.com

ok

更换easy_install源

进入到root目录下

[root@zabbix-server ~]# pwd
/root

编辑easy_install配置文件 vi .pydistutils.cfg 内容如下:

[easy_install]
index-url=http://mirrors.aliyun.com/pypi/simple/
find-links=http://mirrors.aliyun.com/pypi/simple/

ok