twn39 / code

:memo: 代码笔记,通过 issue 的方式记录日常遇到的问题和学习笔记
13 stars 1 forks source link

Pip 镜像配置 #210

Open twn39 opened 6 years ago

twn39 commented 6 years ago

Linux配置文件~/.pip/pip.conf:

中国科学技术大学:

[global]
index-url = https://mirrors.ustc.edu.cn/pypi/web/simple
format = columns

清华大学:

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

阿里云:

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

[install]
trusted-host=mirrors.aliyun.com
twn39 commented 6 years ago

Windows 10目录:%APPDATA%\pip\pip.ini,没有就新建,其中%APPDATA%可以在命令行中打印出来echo %APPDATA%