1. 程式人生 > 其它 >python 更新pip映象源

python 更新pip映象源

前言

預設情況下 pip 使用的是國外的映象,在下載的時候速度非常慢,下載速度是幾kb或者幾十kb,花費的時間比較長。

解決辦法

國內目前有些機構或者公司整理了對應的映象源,使得通過內網就能訪問即可,下載速度達到幾百kb或者幾M,速度對比而言簡直一個天上,一個地下。

國內源:

清華: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/

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

映象源臨時使用

pip install -i http://mirrors.aliyun.com/pypi/simple/

設定預設映象源

pip install pip -U # 更新pip

pip config set global.index-url http://mirrors.aliyun.com/pypi/simple/

全域性修改,則需要修改配置檔案

Linux/Mac os 環境,配置檔案位置在 ~/.pip/pip.conf(如果不存在建立該目錄和檔案):

mkdir ~/.pip

開啟配置檔案 ~/.pip/pip.conf,修改如下:

[global]
index-url = http://mirrors.aliyun.com/pypi/simple/
[install] 
trusted-host = http://mirrors.aliyun.com

檢視映象地址:

$ pip config list
global.index-url='https://mirrors.aliyun.com/pypi/simple/'
install.trusted-host='mirrors.aliyun.com'

可以看到已經成功修改了映象。