国内pip镜像源
- 阿里云:https://mirrors.aliyun.com/pypi/simple/
- 清华:https://pypi.tuna.tsinghua.edu.cn/simple
- 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
一.临时更换镜像源
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple 包名
二.永久更换镜像源
mkdir ~/.pip
nano ~/.pip/pip.conf #创建文件
复制&粘贴下列代码到pip.conf
并保存文件
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple/