0%

python

python

pip 源

linux

1
2
3
4
5
6
7
mkdir -p ~/.pip
tee ~/.pip/pip.conf<<EOF
[global]
index-url=https://mirrors.aliyun.com/pypi/simple/
trusted-host=mirrors.aliyun.com
[install]
EOF

windows

1
2
3
4
5
6
7
mkdir -p ~/pip
tee ~/pip/pip.ini<<EOF
[global]
index-url=https://mirrors.aliyun.com/pypi/simple/
trusted-host=mirrors.aliyun.com
[install]
EOF