清华大学源:https://pypi.tuna.tsinghua.edu.cn/simple
豆瓣源:http://pypi.douban.com/simple/
腾讯源:http://mirrors.cloud.tencent.com/pypi/simple
阿里源:https://mirrors.aliyun.com/pypi/simple/
中国科学技术大学:https://pypi.mirrors.ustc.edu.cn/simple/
在 pip 下载包的时候在后面加上指定参数:-i 镜像地址
# 下载scrapy 采用清华镜像
pip install scrapy -i https://pypi.tuna.tsinghua.edu.cn/simple
修改 pip 的配置文件,设置国内镜像源:以清华源为例
# 下载scrapy 采用清华镜像
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
进行以上设置后,每次通过 pip install 命令下载包时就会从国内源下载,速度飞起,测试一下,将 pip 更新至最新版本:
# 下载scrapy 采用清华镜像
python -m pip install --upgrade pip