Python中的easy_install工具用起來非常好用,它的作用類似於Php中的pear,或者Ruby中的gem,或者Perl中的cpan。
1.easy_install安裝
如果想使用easy_install工具,需要先安裝setuptools,不過更酷的方法是使用ez_setup.py指令碼:
執行如下命令:
shell# wget -q http://peak.telecommunity.com/dist/ez_setup.py shell# python ez_setup.py
安裝完後,最好確保easy_install所在目錄已經被加到PATH環境變數裡:
Linux: /usr/local/bin
比如說要安裝Python的MySQL支援,可以執行如下命令,系統會自動在pypi網站列表裡查詢相關軟體包:
easy_install MySQL-python
透過easy_install安裝軟體,相關安裝資訊會儲存到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檔案,你可以手動刪除。
2.easy_install使用詳解
方法一:
根據你想要的安裝包名來進行easy_install,工具會檢索網頁查詢最新版本的包,自動下載、構建和安裝
easy_install MySQL-python
方法二:
指定網址來更新或安裝,類似使用一,多了個引數-f和用來指定頁面的地址只指定頁面地址
easy_install -f http://pythonpaste.org/package_index.html SQLObject
方法三:
只使用網址來easy_install安裝
easy_install http://example.com/path/to/MyPackage-1.2.3.tgz
方法四
easy_install安裝下載好的egg檔案(egg檔案是用setup tools打包的壓縮檔案)
easy_install /my_downloads/OtherPackage-3.2.1-py2.3.egg
方法五:
升級包,有時候你需要更新包的版本
easy_install --upgrade PyProtocols