How to update Python pip?
If you are on linux try this -
sudo su root
apt-get purge -y python-pip
wget https://bootstrap.pypa.io/get-pip.py
python ./get-pip.py
apt-get install python-pip
or
sudo -H pip3 install --upgrade pip
sudo -H pip2 install --upgrade pip
Try with "python -m pip install --upgrade pip --user" It worked with me and I am with Win10.
Upgrading pip
On Linux or macOS:
pip install -U pip
On Windows:
python -m pip install -U pip