背景
Python 包索引(Python Package Index,PyPI)是由全球 Python 开发人员社区提供的大量开源 Python 包的存储库。官方索引在 https://pypi.org,网站本身由 Python 软件基金会(Python Software Foundation,PSF)维护。
你也可以在上面发布自己的项目,可参考 A Beginner’s Guide to Publishing Packages on the Python Package Index (PyPi),How to Publish an Open-Source Python Package to PyPI。
Python 使用 pip 安装第三方包时,默认使用的官方索引源 pypi 的地址 https://pypi.python.org/pypi 在中国大陆因为墙的原因,下载缓慢。
跟 ubuntu 的 apt 和 archlinux 的 Pacman 有各自国内镜像源一样,pip
也有国内索引源可用,下面罗列了一部分,进一步的,为了便于设置国内源,并受到 nodejs 的 nrm 的启发,我编写了一个脚本。
key | index-url | trusted-url | 提供者 |
---|---|---|---|
douban | http://pypi.douban.com/simple/ | pypi.douban.com | 豆瓣 |
aliyun | http://mirrors.aliyun.com/pypi/simple/ | mirrors.aliyun.com | 阿里云 |
tsinghua | https://pypi.tuna.tsinghua.edu.cn/simple/ | pypi.tuna.tsinghua.edu.cn | 清华大学 |
ustc | https://pypi.mirrors.ustc.edu.cn/simple/ | pypi.mirrors.ustc.edu.cn | 中国科学技术大学 |
hustunique | http://pypi.hustunique.com/simple/ | pypi.hustunique.com | 华中理工大学 |
sdutlinux | http://pypi.sdutlinux.org/simple/ | pypi.sdutlinux.org | 山东理工大学 |
tencent | http://mirrors.cloud.tencent.com/pypi/simple/ | mirrors.cloud.tencent.com | 腾讯云 |