Home > 系统管理 > [Linux]修改easy_install和pip的镜像地址

[Linux]修改easy_install和pip的镜像地址

使用easy_install和pip会让Pyhthon的模块安装和管理变得非常简单,但是,如果你身在国内的话,从官方的镜像下载的速度是很令人抓狂的事情,如同修改apt-get或yum的镜像地址一样,easy_install和pip也需要修改镜像地址。修改easy_install和pip的镜像地址通常可以有以下两种方法,可以分别使用命令和配置方式实现。

方法1:命令方式临时修改
easy_install:

easy_install -i http://e.pypi.python.org/simple fabric

pip:

pip -i http://e.pypi.python.org/simple install fabric

方法2:配置方式修改
easy_install:
1.打开pydistutils.cfg

vi ~/.pydistutils.cfg

2.写入以下内容

[easy_install]
index_url = http://e.pypi.python.org/simple

pip:
1.打开pip.conf

vi ~/.pip/pip.conf

2.写入以下内容

[global]
index-url = http://e.pypi.python.org/simple

速度比较快的国内镜像,都来自清华大学,服务器在北京。公网的服务器为官方镜像
公网:http://e.pypi.python.org/simple
教育网:http://pypi.tuna.tsinghua.edu.cn/simple

以下镜像来自安居客
公网:http://pypi.corp.anjuke.com/simple

Categories: 系统管理 Tags: , ,
You must be logged in to post a comment.