PyPI
1.1、PyPI简介

PyPIPython Package Index

PyPIPython官方提供的Python包的仓库。

PyPI官网:https://pypi.org

1.2、PyPI的管理工具
pip强烈推荐
easy_install已被废弃
1.3、PyPI的中国镜像
1.3.1、常用的PyPI的中国镜像
华为开源镜像站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
更多
1.3.2、临时使用

使用-i参数指定镜像服务器,示例:

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple scrapy
1.3.3、永久使用

有如下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