接觸了Ruby,發現它有個包管理工具RubyGem很好用,而且有很完備的文檔系統http://rdoc.infopython
發現Python下也有一樣的工具,包括easy_install和Pip。不過,我沒有細看easy_install的方法,這就簡單的介紹一下Pip的安裝與使用:git
準備:github
$ curl -O http://python-distribute.org/distribute_setup.py $ python distribute_setup.py
安裝:python2.7
$ curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py $ python get-pip.py
使用方法:curl
$ pip install SomePackage
$ pip search "query"
$ pip install --upgrade SomePackage工具
$ pip install --upgrade SomePackage==versionurl
補充:spa
包安裝後的py文件路徑:/usr/local/lib/python2.7/dist-packages.net