pip切换下载源
一、pip
pip 是一个现代的,通用的 Python 包管理工具
二、使用步骤
1.查看源
使用以下命令查看当前pip的下载源
python
pip config list
2.切换源
在国内使用官方下载依赖往往速度慢,易出错,因此我们选择切换国内镜像源,根据需求或喜好选择下列命令中的一条
python
# 更换阿里源
https://mirrors.aliyun.com/pypi/simple
# 更换清华源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
# 更换腾讯源
pip config set global.index-url http://mirrors.cloud.tencent.com/pypi/simple
# 更换豆瓣源
pip config set global.index-url http://pypi.douban.com/simple/
# 更换中科大源
pip config set global.index-url https://pypi.mirrors.ustc.edu.cn/simple