Python的包管理工具easy_install, setuptools, pip,distribute介紹

來源:互聯網
上載者:User

剛開始學習Python時,在看文檔和別人的blog介紹安裝包有的用easy_install, setuptools, 有的使用pip,distribute,那麽這幾個工具有什麼關係呢,看一下下面這個圖就明白了


可以看到distribute是setuptools的取代,pip是easy_install的取代。

 

關於這些包工具可以參考 http://guide.python-distribute.org/installation.html#installing-pip

 

下面簡單的介紹一下:

Distribute是對標準庫disutils模組的增強,我們知道disutils主要是用來更加容易的打包和分發包,特別是對其他的包有依賴的包。

Distribute被建立是因為Setuptools包不再維護了。

安裝Distribute

可以通過distribute_setup.py 指令碼來安裝Distribute,也可以通過easy_install, pip,源檔案來安裝,不過使用distribute_setup.py來安裝是最簡單和受歡迎的方式

 

$ curl -0 http://python-distribute.org/distribute_setup.py
$ sudo python distribute_setup.py

 

Pip 是安裝python包的工具,提供了安裝包,列出已經安裝的包,升級包以及卸載包的功能。

Pip 是對easy_install的取代,提供了和easy_install相同的尋找包的功能,因此可以使用easy_install安裝的包也同樣可以使用pip進行安裝。

 

安裝Pip

Pip的安裝可以通過原始碼包,easy_install或者指令碼。

下面介紹一下各種安裝方法:

原始碼方式:

 

$ wget http://pypi.python.org/packages/source/p/pip/pip-0.7.2.tar.gz (替換為最新的包) $ tar xzf pip-0.7.2.tar.gz $ cd pip-0.7.2 $ python setup.py install

easy_install:

 

$ easy_install pip

get_pip.py 指令碼:

 

$ curl -0 https://raw.github.com/pypa/pip/master/contrib/get-pip.py
$ sudo python get-pip.py

 

OK, 下面來看一下Pip的使用

安裝package

 

$ pip install Markdown

列出安裝的packages

 

$ pip freeze

安裝特定版本的package

通過使用==, >=, <=, >, <來指定一個版本號碼。

 

$ pip install 'Markdown<2.0'

 

$ pip install 'Markdown>2.0,<2.0.3'

升級包

升級包到當前最新的版本,可以使用-U 或者 --upgrade

 

$ pip install -U Markdown

卸載包

 

$ pip uninstall Markdown

查詢包

 

pip search "Markdown"

 

PS -- 包安裝後的py檔案路徑:/usr/local/lib/python2.7/dist-packages

轉自:http://jiayanjujyj.iteye.com/blog/1409819,留作記憶!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.