PyPI
(Python Package Index
)
PyPI
官网:https://pypi.org
pip | 强烈推荐 |
easy_install | 已被废弃 |
华为开源镜像站 | https://mirrors.huaweicloud.com/repository/pypi/simple |
阿里开源镜像站 | http://mirrors.aliyun.com/pypi/simple |
网易开源镜像站 | http://mirrors.163.com/pypi/simple |
清华大学开源镜像站 | https://pypi.tuna.tsinghua.edu.cn/simple |
更多 |
使用-i
参数指定镜像服务器,示例:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple scrapy
有如下2
种配置方法:
方法一:使用pip命令修改:
pip install -u pip
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
方法二:在$HOME/.config/pip/pip.conf
中修改或者加入如下配置:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple