pip command linux code example
Example 1: linux install pip
apt-get install python-pip #python 2
apt-get install python3-pip #python 3
Example 2: linux install pip
# First run
sudo apt-get update
# And then
sudo apt-get install python3-pip
# Tested on ubuntun 20 (linux)
Example 3: install pip linux
//IF you have problem with your pip try the oldest one :]
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py; python get-pip.py
pip install xlrd --upgrade