在国内,可以将python安装第三方库时的安装源设置成清华源或阿里源,以加快安装速度

#设置为清华源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

# 设置成阿里云源
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple

#取消设置
pip config unset global.index-url