What is a shorter way to do that:
wget https://bootstrap.pypa.io/get-pip.py sudo python get-pip.py
? I tried this:
sud
curl https://bootstrap.pypa.io/get-pip.py | sudo python -
curl will output given URL to stdout
curl
python - indicate, that source will be taken from stdin.
python -
Another way to install pip:
sudo python -m ensurepip