常用pip映象源以及使用pip映象源的方法
【時間】2018.11.19
【題目】常用pip映象源以及使用pip映象源的方法
一、常見pip映象源(國內源)
新版ubuntu要求使用https源,要注意。
清華: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映象源
可以在使用pip的時候加引數-i https://pypi.tuna.tsinghua.edu.cn/simple
例如:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyspider,這樣就會從清華這邊的映象去安裝pyspider庫。
三、永久修改pip映象源:
3.1 Linux系統
Linux下,修改 ~/.pip/pip.conf (沒有就建立一個資料夾及檔案。資料夾要加“.”,表示是隱藏資料夾)
內容如下:
[global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple [install] trusted-host=mirrors.aliyun.com
3.2windows系統
windows下,直接在user目錄中建立一個pip目錄,如:C:\Users\xx\pip,新建檔案pip.ini。內容與上邊類似。具體如下:
(1):在windows檔案管理器中,輸入 %APPDATA%
(2):會定位到一個新的目錄下,在該目錄下新建pip資料夾,然後到pip資料夾裡面去新建個pip.ini檔案
(3):在新建的pip.ini檔案中輸入以下內容,搞定檔案路徑:"C:\Users\Administrator\AppData\Roaming\pip\pip.ini"
[global] timeout = 6000 index-url = https://pypi.tuna.tsinghua.edu.cn/simple trusted-host =mirrors.aliyun.com
參考文獻:
https://www.cnblogs.com/microman/p/6107879.html
https://blog.csdn.net/zheng_lan_fang/article/details/78612392