python開發者經過國內鏡像安裝pip包

對於Python開發用戶來說,PIP安裝軟件包是屢見不鮮。但國外的源下載速度實在太慢,浪費時間。並且常常出現下載後安裝出錯問題。因此把PIP安裝源替換成國內鏡像,能夠大幅提高下載速度,還能夠提升安裝成功率。linux

國內源:

新版ubuntu要求使用https源,要注意。ubuntu

清華:https://pypi.tuna.tsinghua.edu.cn/simplewindows

阿里雲:http://mirrors.aliyun.com/pypi/simple/ide

中國科技大學 https://pypi.mirrors.ustc.edu.cn/simple/ui

華中理工大學:http://pypi.hustunique.com/阿里雲

山東理工大學:http://pypi.sdutlinux.org/ url

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

 

臨時使用:

能夠在使用pip的時候加參數-i https://pypi.tuna.tsinghua.edu.cn/simple

例如:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyspider,這樣就會從清華這邊的鏡像去安裝pyspider庫。code

 

要配製成默認的話,須要建立或修改配置文件(linux的文件在~/.pip/pip.conf,windows在%HOMEPATH%\pip\pip.ini),修改內容爲:pyspider

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host=mirrors.aliyun.com

這樣在使用pip來安裝時,會默認調用該鏡像。

 

還有一個小技巧,就是把全部要安裝的包寫在一個文件裏面,好比requirement.txt(每一個包寫一行,頂行頭寫),而後pip安裝的時候只須要加參數「-r  requirement.txt」便可。

相關文章
相關標籤/搜索