一、官方包管理网站
https://pypi.org/
二、官网地址
官方源地址: https://pypi.org/simple
中文:
https://pypi.com.cn/
PyPI中文网
可以参考,偏慢!
三、国内源头
# 清华源 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 set global.index-url http://mirrors.cloud.tencent.com/pypi/simple # 豆瓣源 pip config set global.index-url http://pypi.douban.com/simple/
四、python安装后需要更换为国内的源【常用】
python -m pip install --upgrade pip
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
可以选择自己喜欢的国内的镜像或者默认上面这个也行
下面的是清华大学的配置说明
https://mirrors.tuna.tsinghua.edu.cn/help/pypi/