pip的介绍及安装 ――Linux 14.4 LTS


pip 是一个安装和管理 Python 包的工具,

python安装包的工具有easy_install, setuptools,pip,distribute。


Install Pip on Ubuntu 14.04 LTS


1.Install Pip with apt-get, Step 1a: The Installation

As a matter of best practice we’ll update our packages:

apt-get update

Then let’s install python-pip and any required packages:

apt-get -y install python-pip


2.Install Pip with Curl and Python, Step 1b: The Installation

We can also use curl and python to download and install Pip.

curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py"

python get-pip.py


3.Verify The Installation

View a list of helpful commands:

pip --help

Check the version of Pip that is installed:

pip -V


参考:http://www.liquidweb.com/kb/how-to-install-pip-on-ubuntu-14-04-lts/


你可能感兴趣的:(python,pip,ubunt14.04)