國內鏡像下載Python文件

一、可以使用的庫
阿里雲:http://mirrors.aliyun.com/pypi/simple/
清華:https://pypi.tuna.tsinghua.edu.cn/simple/
中國科技大學 https://pypi.mirrors.ustc.edu.cn/simple/
華中理工大學:http://pypi.hustunique.com/
山東理工大學:http://pypi.sdutlinux.org/ 
豆瓣:http://pypi.douban.com/simple/


二、下載示例
一般下載

pip install urllib

鏡像下載(清華)

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

三、永久使用
linux下,修改~/.pip/pip.conf,修改index-url至相應源

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple 

windows下,修改c:\users\xxx\pip\pip.ini,修改index-url至相應源

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple

原文鏈接:https://blog.csdn.net/qq_30534935/article/details/93889538

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章