【pip安装加速】pip 更换清华源

临时修改

清华大学的镜像

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

在使用pip时加参数 -i 镜像源地址,例如:

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

加上以上代码就可以从镜像源安装numpy库

永久修改

Linux下,修改 ~/.pip/pip.conf (没有就创建一个), 修改 index-url至tuna,内容如下:

清华源

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

阿里源

[global]
index-url = https://mirrors.aliyun.com/pypi/simple
proxy     = http://127.0.0.1:7890

windows下,直接在user目录中创建一个pip目录,如:C:\Users\xx\pip,新建文件pip.ini,内容如下

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

你可能感兴趣的:(pip,python,linux)