What is a shorter way to do that:
wget https://bootstrap.pypa.io/get-pip.py
sudo python get-pip.py
?
I tried this:
sudo <(python <(curl https://bootstrap.pypa.io/get-pip.py))
but it returns the error: 'IOError: [Errno 32] Broken pipe'
This works: python <(curl https://bootstrap.pypa.io/get-pip.py)
but requires sudo
curl https://bootstrap.pypa.io/get-pip.py | sudo python -
curl
will output given URL to stdout
python -
indicate, that source will be taken from stdin.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With