pip使用默认源是从国外下载,速度特别慢,还非常容易失败。本篇文章记录pip换源过程

关键词:python

一、临时修改

在正常pip安装命令后添加

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

示例命令

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

二、永久修改

1.Linux

新建目录并编辑文件

mkdir ~/.pip
vim ~/.pip/pip.conf

向其中添加如下内容

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

:wq 保存并退出

2.Windows

打开文件资源浏览器,地址栏输入 %USERPROFILE%

新建pip目录,并在其中新建pip.ini文件

向其中添加如下内容

[global]
timeout = 6000
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn

参考PIP 更换国内安装源

文章作者:四文鱼Max

本文链接:https://blog.awolon.fun/archives/python-pip-change-source.html

许可协议:CC BY-SA 4.0

标签: python

添加新评论