Моно отсюда:
pip 20.2.4 documentation
Installing with get-pip.py
cd /tmp; wget https://bootstrap.pypa.io/get-pip.py; cd
или
cd /tmp; curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py; cd
get-pip.py also installs setuptools and wheel if they are not already. setuptools is required to install source distributions. Both are required in order to build a Wheel Cache (which improves installation speed), although neither are required to install pre-built wheels.
Если оные - setuptools и wheel не нужны, то пользуем опции в команде установки выше python get-pip.py:
get-pip.py options
--no-setuptools
--no-wheel
Например:
python get-pip.py --no-setuptools
И скорее всего, чтобы ошибок не было и если есть Пользователь, то добавлять к команде установки
sudo
А моно и отсюда:
Get pip
$ # Install the latest version of pip
$ curl https://bootstrap.pypa.io/get-pip.py | python
$ # Install the latest version of pip, supported by a legacy Python
$ curl https://bootstrap.pypa.io/3.2/get-pip.py | python3.2
$ # Install a specific version of pip
$ curl https://bootstrap.pypa.io/get-pip.py | python - 'pip==8.0.0'
или
cd /tmp; wget https://bootstrap.pypa.io/get-pip.py; sudo python get-pip.py; cd
Если установка из Менеджера пакетов, то:
sudo apt install python-pip
и обновление:
pip install -U pip
Опять же, если есть Пользователь, то через sudo в начале...