CentOs 永久置换pip镜像源
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOs 永久置换pip镜像源相关的知识,希望对你有一定的参考价值。
参考技术A 永久置换pip镜像源1. 创建pip.conf文件
运行以下命令:
cd ~/.pip
如果提示目录不存在的话,我们要自行创建一个,再进入目录
mkdir ~/.pip
cd ~/.pip
在.pip目录下创建一个pip.conf文件
touch pip.conf
文件就创建好了(当然如果你已经有这个文件了这步可以跳过).
2. 编辑pip.conf文件
sudo gedit ~/.pip/pip.conf
打开pip.conf文件窗口,将以下内容复制到文件中:
[global]
index-url = http://pypi.douban.com/simple
[install]
trusted-host=pypi.douban.com
这样就替换成功了,当然你也可以选择其他镜像源.
pip install永久设置镜像源
针对Windows系统设置方式如下:
进入C:Users用户名目录下,新建pip文件夹pip.ini:
将下列内容复制到pip.ini文件中保存即可:
[global]
index-url = http://pypi.douban.com/simple
trusted-host = pypi.douban.com
;index-url = https://pypi.tuna.tsinghua.edu.cn/simple
;trusted-host = pypi.tuna.tsinghua.edu.cn
timeout = 10000
以上是关于CentOs 永久置换pip镜像源的主要内容,如果未能解决你的问题,请参考以下文章