当前位置:首页 » 《资源分享》 » 正文

Python国内常用镜像源汇总

26 人参与  2024年09月12日 11:22  分类 : 《资源分享》  评论

点击全文阅读


前言

    由于网络问题,直接从Python官方的PyPI仓库下载软件包可能会遇到速度慢甚至无法访问的情况。还好,有几个国内大学和组织提供了PyPI的镜像,可以显著提高下载速度和稳定性。本文将介绍几个常用的Python镜像源,并指导如何在pip中配置它们。

国内镜像地址

阿里云
http://mirrors.aliyun.com/pypi/simple/
豆瓣(douban)
http://pypi.douban.com/simple/
清华大学
https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学
http://pypi.mirrors.ustc.edu.cn/simple/
腾讯
http://mirrors.cloud.tencent.com/pypi/simple

使用方式

临时换源

清华源pip install xxxx -i https://pypi.tuna.tsinghua.edu.cn/simple阿里源pip install xxxx -i https://mirrors.aliyun.com/pypi/simple/腾讯源pip install xxxx -i http://mirrors.cloud.tencent.com/pypi/simple豆瓣源pip install xxxx -i http://pypi.douban.com/simple/中科院源pip install xxxx -i https://pypi.mirrors.ustc.edu.cn/simple/

只需要把xxxx换成自己需要安装的包的名字。

永久换源

清华源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/中科院源pip config set global.index-url https://pypi.mirrors.ustc.edu.cn/simple/

换回默认源

pip config unset global.index-url

辅助网站

清华大学开源软件镜像站
腾讯软件源
阿里巴巴开源镜像站
中国科学技术大学开源软件镜像站


点击全文阅读


本文链接:http://zhangshiyu.com/post/158665.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1