最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
使用镜像源安装EASY_INSTALL和PIP教程
时间:2022-06-30 20:49:18 编辑:袖梨 来源:一聚教程网
使用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.tsinghua.edu.cn/simple
1. 命令行安装时临时使用pypi镜像,即:添加 -i https://pypi.tuna.tsinghua.edu.cn/simple 参数即可
# easy_install 命令行
easy_install -i https://pypi.tuna.tsinghua.edu.cn/simple pip
# pip install 命令行
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple lxml
2. 设置easy_install和pip的配置文件,永久设置pypi镜像源,命令行就不用-i参数了
easy_install的配置文件 ~/.pydistutils.cfg 在其中添加如下配置:
[easy_install]
index_url = https://pypi.tuna.tsinghua.edu.cn/simple
pip的配置文件 ~/.pip/pip.conf (可能需要创建.pip目录及pip.conf文件),在其中添加如下配置:
pip pypi镜像源配置Shell
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
相关文章
- Binance.US已上线VIRTUAL 04-30
- binance官网电脑下载_binance苹果版下载地址V2.57.7 04-30
- 比特币交易量最大的交易所是哪个?全球最大的比特币交易平台排名 04-30
- 奥比岛梦想国度卡死闪退有哪些解决方法 04-30
- DNF手游骨戒在哪个位置 04-30
- 回望羊驼:当利空成为短暂的财富密码 04-30