Pip is a tool for installing and managing Python packages. With the help of PIP, you can install a unique version of the package.
Most importantly, PIP can manage a list and version number consisting of packages through a "requirements" tool.
Pip is a lot like Easy_install, but Pip has some extra features.
Install PIP on the Ubuntu14.04
Step One: Use the following command on the terminal to ensure that all packages on your system are up-to-date.
sudo apt-get update
sudo apt-get upgrade
Step Two: Install Pip
Install the PYTHON-PIP and the packages you need:
apt-get install python-pip
Check the version of the installed PIP after checking:
pip-V
Step three: How to use the PIP command.
After installing PYTHON-PIP, you can use the PIP command. Here are a number of PIP commands that can be used:
To install a new PIP package:
pip install packageName
To uninstall a Python package:
pip uninstall packageName
Find Python Packages:
pip search packageName
Install PIP on Ubuntu14.04lts