easy_install 和pip安装软件时使用指定的 源地址

简介:

    一般来说,使用国外的网站安装软件有些速度会很慢,因此在安装软件时可以使用国内的网站。

1、临时改变

    使用easy_install安装pip时有时就会很慢,因此可以更换软件源地址:

1
easy_install -i https://mirrors.aliyun.com/pypi/simple pip

    同时pip安装软件时也可以使用指定的源地址安装软件:

1
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple lxml


2、永久改变

    也可以通过设置easy_install和pip的配置文件永久更换软件源地址:

    easy_install的配置文件 ~/.pydistutils.cfg  ,可以在其中添加如下内容:

1
2
[easy_install]
index_url = https://pypi.tuna.tsinghua.edu.cn/simple


    pip的配置文件 ~/.pip/pip.conf (可能需要创建.pip目录及pip.conf文件),在其中添加如下内容:

1
2
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple



本文转自 f_066 51CTO博客,原文链接:http://blog.51cto.com/ganmu/1956330,如需转载请自行联系原作者
相关文章
|
7月前
|
存储 缓存 Linux
如何在Linux环境下对pip的缓存地址进行修改
如何在Linux环境下对pip的缓存地址进行修改
1216 0
|
5月前
|
JavaScript Java 数据库连接
node,npm汇总,pip汇总,typeScript的使用,mybatis,sass的使用中文官网地址:
node,npm汇总,pip汇总,typeScript的使用,mybatis,sass的使用中文官网地址:
|
Python Windows
Windows安装pip和pygame详细教程(附国内下载地址)
Windows安装pip和pygame详细教程(附国内下载地址)
522 0
|
Python
python-安装easy_install和pip(win64位)
学习python-安装easy_install和pip(win64位)。
238 0
python-安装easy_install和pip(win64位)
|
Linux C语言 Python
linux下安装easy_install、pip和psutil模块
1.上传软件setuptools-25.2.0.tar.gz    tar xvf setuptools-25.2.0.tar.gz    //解压软件 ls cd setuptools-25.2.0 //进入目录进入目录 python setup.
1554 0

热门文章

最新文章

下一篇
无影云桌面