1. 程式人生 > >設置阿裏雲pip源,加速pip更新速度

設置阿裏雲pip源,加速pip更新速度

pip linux

Linux系統:
mkdir ~/.pip
cat > ~/.pip/pip.conf << EOF
[global]
trusted-host=mirrors.aliyun.com
index-url=https://mirrors.aliyun.com/pypi/simple/
EOF

Windows系統:

首先在window的文件夾窗口輸入 : %APPDATA%
然後創建pip文件夾
最後創建pip.ini文件,寫入如下內容
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com

添加清華大學pip源

mkdir ~/.pip
cat > ~/.pip/pip.conf << EOF
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
EOF

設置阿裏雲pip源,加速pip更新速度