详解python包揽理器pip安装
pip对付利用python的伴侣并不生疏,当你想安装python模块的时候必然会首先想到它。pip 是一个安装和打点 Python 包的东西 , 是 easy_install 的一个替换品。
本日来说一下,pip的安装要领。
要领一:剧本安装
$ wget https://raw.github.com/pypa/pip/master/contrib/get-pip.py $ [sudo] python get-pip.py
要领二:源码安装:
$ curl -O https://pypi.python.org/packages/source/p/pip/pip-X.X.tar.gz $ tar xvfz pip-X.X.tar.gz $ cd pip-X.X $ python setup.py install
可是安装进程大概会呈现错误:
An error occurred while trying to run get-pip.py. Make sure you have setuptools or distribute installed.
呈现这个错误,说明首先要安装setuptools
setuptools 安装:
wget -q http://peak.telecommunity.com/dist/ez_setup.py python ez_setup.py
安装完setuptools后,再次源码安装就好了。