LeeZC's Blog

使用国内pip 源

有些服务器对外网络很坑,幸好国内有好多优秀的源镜像

优秀pip源推荐

http://pypi.douban.com/  豆瓣
http://pypi.hustunique.com/  华中理工大学
http://pypi.sdutlinux.org/  山东理工大学
http://pypi.mirrors.ustc.edu.cn/  中国科学技术大学
pip install web.py -i https://pypi.douban.com/simple

~/.pip/pip.conf

[global]
index-url = https://pypi.douban.com/simple

清华大学开源镜像

https://mirrors.tuna.tsinghua.edu.cn/

临时使用

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package

注意,simple 不能少, 是 https 而不是 http

设为默认 升级 pip 到最新的版本 (>=10.0.0) 后进行配置:

pip install pip -U
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
本文标签: python pip 国内源
本文编写于 1577576709000,技术更迭飞快,文中部分内容可能已经过时
本文网址: https://blog.leezc.cn/posts/2019-12-28-9867.html(转载注明出处)
如果你有任何建议或疑问可以在下面 留言
发表评论
相关推荐