Curl Get-Pip

#First download the pip installer with curl
curl -sSL https://bootstrap.pypa.io/get-pip.py -o get-pip.py
#Then execute the pip installer
python get-pip.py
Armandres