使用easy_install和pip可以让python的模块的安装和管理变得非常方便。我一般在新的Linux系统上,先easy_install pip然后就用pip安装其他的模块了。 不过,在国内用官方的pypi源(https://pypi.python.org/simple)一般比较慢,甚至偶尔会直接连接timeout,所以很有必要使用pypi的国内镜像。关于镜像,我已推荐过,见这篇文章:常用的开源镜像站推荐
本文是讲一下通过两种方式来配置让easy_install和pip使用镜像pypi。 以清华大学的TUNA镜像源为例:https://pypi.tuna.*tsin*ghua.*edu.cn/simple
1. 命令行安装时临时使用pypi镜像,即:添加 -i https://pypi.tuna.*tsin*ghua.*edu.cn/simple 参数即可
# easy_install 命令行
easy_install -i https://pypi.tuna.*tsin*ghua.*edu.cn/simple pip
# pip install 命令行
pip install -i https://pypi.tuna.*tsin*ghua.*edu.cn/simple lxml
2. 设置easy_install和pip的配置文件,永久设置pypi镜像源,命令行就不用-i参数了
easy_install的配置文件 ~/.pydistutils.cfg 在其中添加如下配置:
[easy_install]
index_url = https://pypi.tuna.*tsin*ghua.*edu.cn/simple
pip的配置文件 ~/.pip/pip.conf (可能需要创建.pip目录及pip.conf文件),在其中添加如下配置:
pip pypi镜像源配置Shell
[global]
index-url = https://pypi.tuna.*tsin*ghua.*edu.cn/simple
TPLink TLWDR4320 无线路由器IP带宽控制功能分配带宽设置方法
SQL Server 2008及更高版本数据库恢复做法之日志尾部备份实用指南
TPLink TLWDR4320 无线路由器控制管控小孩上网行为设置
TPLink TLWDR4320 无线路由器打印服务器设置指南
TPLink TLWDR8620 52 无线路由器当作交换机使用教程
TPLink TLWDR8620 52 无线路由器映射服务器到外网操作方法