Python中的easy_install

來源:互聯網
上載者:User

Python中的easy_install工具很爽,它的作用類似於Php中的pear,或者Ruby中的gem,或者Perl中的cpan。

如果想使用easy_install工具,可能需要先安裝setuptools,不過更酷的方法是使用ez_setup.py指令碼:

wget -q http://peak.telecommunity.com/dist/ez_setup.py
python ez_setup.py

安裝完後,最好確保easy_install所在目錄已經被加到PATH環境變數裡:

Windows: C:\Python25\Scripts
Linux: /usr/local/bin

比如說要安裝Python的MySQL支援,可以執行如下命令,系統會自動在pypi網站列表裡尋找相關軟體包:

easy_install MySQL-python

如果你在Windows+python2.5上執行如上命令的話,可能會出現如下錯誤:

Processing MySQL-python-1.2.3c1.tar.gz
Running MySQL-python-1.2.3c1\setup.py -q bdist_egg --dist-dir c:\docume~1\...
\locals~1\temp\easy_install-fvvfve\MySQL-python-1.2.3c1\egg-dist-tmp-q9moxf
error: The system cannot find the file specified

出現這類錯誤的原因是選錯了版本,針對這個案列,我們可以顯式指定軟體包的版本號碼:

easy_install "MySQL-python==1.2.2"

通過easy_install安裝軟體,相關安裝資訊會儲存到easy-install.pth檔案裡,路徑類似如下形式:

Windows:C:\Python25\Lib\site-packages\easy-install.pth
Linux:/usr/local/lib/python25/site-packages/easy-install.pth

如果想刪除通過easy_install安裝的軟體包,比如說:MySQL-python,可以執行命令:

easy_install -m MySQL-python

此操作會從easy-install.pth檔案裡把MySQL-python的相關資訊抹去,剩下的egg檔案,你可以手動刪除。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.