python库下载镜像

林风沐雨 / 2024-03-12 / 原文

Python使用pip在线安装第三方库时,由于网络限制会导致网速过慢,这里就可以使用国内一些镜像来加速

国内镜像
清华:https://pypi.tuna.tsinghua.edu.cn/simple

阿里云:http://mirrors.aliyun.com/pypi/simple/

中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/

华中理工大学:http://pypi.hustunique.com/

山东理工大学:http://pypi.sdutlinux.org/

豆瓣:http://pypi.douban.com/simple/

使用方法:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple 库名

如,安装TensorFlow
————————————————

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

原文链接:https://blog.csdn.net/wuheng248113004/article/details/90678157