pip 配置pypi国内源

前言

python使用pip方法安装第三方包时,需要从 https://pypi.org/ 资源库中下载,由于这个地址是国外的,速度简直慢的令人发指,还经常连不上,于是在网上收集了几个国内的 pypi源以及配置访问

pypi国内源

# 豆瓣(douban)

https://pypi.douban.com/simple

# 阿里云(http协议 服务器没网使用nginx正向代理时可配置此源)

http://mirrors.aliyun.com/pypi/simple

# 中国科技大学

https://pypi.mirrors.ustc.edu.cn/simple

# 清华大学

https://pypi.tuna.tsinghua.edu.cn/simple

配置

1. 临时使用

# 此参数“--trusted-host”表示信任,

pip install -i https://pypi.douban.com/simple/ --trusted-host pypi.douban.com 

2. 永久使用

2.1 linux系统

创建 pip.conf 文件

如果提示目录不存在,自行创建一个(如果目录存在,可跳过此步),如下:

mkdir ~/.pip

cd ~/.pip

首先打开文件,命令如下:

sudo vim ~/.pip/pip.conf

接着,写入以下内容:

[global]

index-url = https://pypi.tuna.tsinghua.edu.cn/simple

[install]

# trusted-host 此参数是为了避免麻烦,否则使用的时候可能会提示不受信任

trusted-host = https://pypi.tuna.tsinghua.edu.cn 

2.2 Window系统

新建 pip 配置文件夹,直接在user用户目录中创建一个名为 pip 的文件夹( 即%HOMEPATH%\pip)

创建 pip.conf 文件

接着,写入以下内容:

[global]

index-url = https://pypi.tuna.tsinghua.edu.cn/simple

[install]

# trusted-host 此参数是为了避免麻烦,否则使用的时候可能会提示不受信任

trusted-host = https://pypi.tuna.tsinghua.edu.cn 

测试

修改完成后,使用 ” pip install xxx “(xxx为你要下载的包名),即可默认使用国内源下载。

你可能感兴趣的:(pip 配置pypi国内源)