I\'m trying to install the latest version of pip (currently 8.1.2) on the official ubuntu/trusty64 Vagrant box. The box comes with Python 2.7.6 and 3.4.3 pre-installed with apt-
If you are using Ubuntu OS with Python2.7 You can follow below steps
apt-get update
apt-get upgrade
apt-get install python-pip
To check install pip version
pip --version
OR
If you are using Ubuntu OS with Python3 You can follow below steps
apt-get update
apt-get upgrade
apt-get install python3-pip
To check install pip3 version
pip3 --version