What is the shorter way to do this:
wget https://bootstrap.pypa.io/get-pip.py sudo python get-pip.py
?
I tried this:
sudo <(python <(curl https:
but it returns an error: 'IOError: [Errno 32] Broken pipe'
This works: python <(curl https://bootstrap.pypa.io/get-pip.py) , but requires sudo
source share