设置阿里云pip源,加速pip更新速度

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
相关文章
相关标签/搜索