[Ubuntu 20.04] How to Install Python Pip
2020. 10. 15.
Installing pip for Python 2Pip for Python 2 is not included in the Ubuntu 20.04 repositories. We’ll be installing pip for Python 2 using the get-pip.py script.Start by enabling the universe repository:$ sudo add-apt-repository universe Update the packages index and install Python 2:$ sudo apt update$ sudo apt install python2 Use curl to download the get-pip.py script:$ curl https://bootstrap.pyp..