Python切換pip安裝源的方法詳解
一、pip簡(jiǎn)介
Pip 是安裝python包的工具,提供了安裝包,列出已經(jīng)安裝的包,升級(jí)包以及卸載包的功能。
Pip 是對(duì)easy_install的取代,提供了和easy_install相同的查找包的功能,因此可以使用easy_install安裝的包也同樣可以使用pip進(jìn)行安裝。
二、Linux下的源配置
檢查pip.conf文件是否存在
>> cd ~
>> mkdir .pip
>> ls ~/.pip
三、編輯源
方案1: 直接編輯pip.conf
sudo vi ~/.pip/pip.conf
[global] index-url = http://mirrors.aliyun.com/pypi/simple/ [install] trusted-host=mirrors.aliyun.com
方案2:
pip install turtle --trusted-host mirrors.aliyun.com
四、測(cè)試對(duì)比
使用默認(rèn)源的速度:
Downloading alembic-0.8.0.tar.gz (918kB) 100% |████████████████████████████████| 921kB 9.9kB/s Collecting beautifulsoup4==4.4.1 (from -r requirements.txt (line 2)) Downloading beautifulsoup4-4.4.1-py2-none-any.whl (81kB) 100% |████████████████████████████████| 81kB 5.2kB/s Collecting cffi==1.2.1 (from -r requirements.txt (line 3)) Downloading cffi-1.2.1.tar.gz (335kB) 100% |████████████████████████████████| 337kB 15kB/s Collecting chardet==2.3.0 (from -r requirements.txt (line 4)) Downloading chardet-2.3.0.tar.gz (164kB) 100% |████████████████████████████████| 174kB 9.4kB/s Collecting cryptography==1.0 (from -r requirements.txt (line 5)) Downloading cryptography-1.0.tar.gz (331kB) 100% |████████████████████████████████| 337kB 7.1kB/s Collecting Django==1.8.4 (from -r requirements.txt (line 6)) Downloading Django-1.8.4-py2.py3-none-any.whl (6.2MB) 100% |████████████████████████████████| 6.2MB 16kB/s
使用國(guó)內(nèi)源的速度:
Collecting alembic==0.8.0 (from -r requirements.txt (line 1)) Downloading http://mirrors.aliyun.com/pypi/packages/9f/e6/d261c6958d418bcb542b8f79fae7fcf14f7f647f891d42c4ed86a499d690/alembic-0.8.0.tar.gz (918kB) 100% |████████████████████████████████| 921kB 160kB/s Collecting beautifulsoup4==4.4.1 (from -r requirements.txt (line 2)) Downloading http://mirrors.aliyun.com/pypi/packages/33/62/f3e97eaa87fc4de0cb9b8c51d253cf0df621c6de6b25164dcbab203e5ff7/beautifulsoup4-4.4.1-py2-none-any.whl (81kB) 100% |████████████████████████████████| 81kB 630kB/s Collecting cffi==1.2.1 (from -r requirements.txt (line 3)) Downloading http://mirrors.aliyun.com/pypi/packages/22/86/b4ae6aeec29105cd2faa07ed2f647349fbcad502d880cb504dca84368853/cffi-1.2.1.tar.gz (335kB) 100% |████████████████████████████████| 337kB 1.4MB/s Collecting chardet==2.3.0 (from -r requirements.txt (line 4)) Downloading http://mirrors.aliyun.com/pypi/packages/7d/87/4e3a3f38b2f5c578ce44f8dc2aa053217de9f0b6d737739b0ddac38ed237/chardet-2.3.0.tar.gz (164kB) 100% |████████████████████████████████| 174kB 1.1MB/s Collecting cryptography==1.0 (from -r requirements.txt (line 5)) Downloading http://mirrors.aliyun.com/pypi/packages/60/1f/8cf32f1fa61efafea7d4fcdcb5080c073f99ada1d2a436527bc392f2f8ea/cryptography-1.0.tar.gz (331kB) 100% |████████████████████████████████| 337kB 1.3MB/s Collecting Django==1.8.4 (from -r requirements.txt (line 6))
相對(duì)而言,速度提升了不是一點(diǎn)半點(diǎn),而是飛一樣的提升。
5. 總結(jié)
好了,以上就是這篇文章的全部?jī)?nèi)容了,碰到問題就要想辦法解決,總有辦法可以解決碰到的問題,這就是技術(shù)的魅力。希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作能帶來一定的幫助,如果有疑問大家可以留言交流。
相關(guān)文章
python開發(fā)之函數(shù)定義實(shí)例分析
這篇文章主要介紹了python開發(fā)之函數(shù)定義方法,以實(shí)例形式較為詳細(xì)的分析了Python中函數(shù)的定義與使用技巧,需要的朋友可以參考下2015-11-11把大數(shù)據(jù)數(shù)字口語(yǔ)化(python與js)兩種實(shí)現(xiàn)
當(dāng)出現(xiàn)萬(wàn)以上的整型數(shù)字時(shí),經(jīng)常要把它們口語(yǔ)化比較直觀。下面分享兩段代碼,python與js的2013-02-02Python實(shí)現(xiàn)subprocess執(zhí)行外部命令
Python使用最廣泛的是標(biāo)準(zhǔn)庫(kù)的subprocess模塊,使用subprocess最簡(jiǎn)單的方式就是用它提供的便利函數(shù),因此執(zhí)行外部命令優(yōu)先使用subprocess模塊,下面就一起來了解一下如何使用2021-05-05python 隨機(jī)數(shù)生成的代碼的詳細(xì)分析
如果你對(duì)python隨機(jī)數(shù)生成的實(shí)際應(yīng)用有不解之處,你就可以通過以下的內(nèi)容對(duì)其進(jìn)行了解,以下十九相關(guān)內(nèi)容的介紹2011-05-05Python簡(jiǎn)直是萬(wàn)能的,這5大主要用途你一定要知道!(推薦)
這篇文章主要介紹了Python主要用途,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2019-04-04學(xué)習(xí)Python爬蟲前必掌握知識(shí)點(diǎn)
這篇文章主要介紹了學(xué)習(xí)Python爬蟲前,我們需要了解涉及爬蟲的知識(shí)點(diǎn),學(xué)習(xí)爬蟲的知識(shí)點(diǎn)比較多,我們一起學(xué)習(xí)爬蟲吧2021-04-04基于OpenCV的路面質(zhì)量檢測(cè)的實(shí)現(xiàn)
這篇文章主要介紹了基于OpenCV的路面質(zhì)量檢測(cè),文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2020-11-11PyCharm創(chuàng)建Django項(xiàng)目的簡(jiǎn)單步驟記錄
PyCharm是一種Python?IDE,帶有一整套可以幫助用戶在使用Python語(yǔ)言開發(fā)時(shí)提高其效率的工具,下面這篇文章主要給大家介紹了關(guān)于利用PyCharm創(chuàng)建Django項(xiàng)目的簡(jiǎn)單步驟,需要的朋友可以參考下2022-07-07