File size: 454 Bytes
e8d350a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # ~/.config/pip/pip.conf (or ~/.pip/pip.conf) for domestic-server builds.
# Tsinghua primary, Aliyun + Douban as extras for coverage.
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
extra-index-url =
https://mirrors.aliyun.com/pypi/simple
https://pypi.doubanio.com/simple
timeout = 60
retries = 5
disable-pip-version-check = true
[install]
trusted-host =
pypi.tuna.tsinghua.edu.cn
mirrors.aliyun.com
pypi.doubanio.com
|