

Once the repository is enabled, run the script as sudo user with python2 to install pip for Python 2: sudo python2 get-pip.py To download the get-pip.py script: curl -output get-pip.py Update the packages index and install Python 2: sudo apt update sudo apt install python2 Start by enabling the universe repository: sudo add-apt-repository universe We’ll be installing pip for Python 2 using the get-pip.py script. Pip for Python 2 is not included in the Ubuntu 20.04 repositories. The version number may vary, but it will look something like this: pip 20.0.2 from /usr/lib/python3/dist-packages/pip (python 3.8) Installing pip for Python 2 # When the installation is complete, verify the installation by checking the pip version: pip3 -version The command above will also install all the dependencies required for building Python modules. In your terminal: sudo apt update sudo apt install python3-pip To install pip for Python 3 on Ubuntu 20.04 run the following commands as root or sudo user This way, you do not have to worry about affecting other Python projects. Python Virtual Environments allows you to install Python modules in an isolated location for a specific project, rather than being installed globally.

Prefer using pip within a virtual environment Use pip to install a module globally only if there is no deb package for that module. Python 3 packages are prefixed with python3- and Python 2 packages are prefixed with python2. Tool as they are tested to work properly on Ubuntu systems. When installing a Python module globally, it is highly recommended to install the module’s deb package with the apt Users are encouraged to switch to Python 3. Starting from Ubuntu 20.04, Python 3 is included in the base system installation, and Python 2 is available for installation from the Universe repository. Python comes in two flavors Python 2 and Python 3. We will also walk you through the basics of installing and otherwise managing Python packages with pip. This guide explains how to install pip for Python 3 and Python 2 on Ubuntu 20.04. How to Install Pip on Ubuntu - Package Manager for Python
