Skip to content

Latest commit

 

History

History
20 lines (19 loc) · 464 Bytes

File metadata and controls

20 lines (19 loc) · 464 Bytes

Installing Python in ubuntu

First install Ubuntu software properties package if it’s not already installed on your system.

sudo apt update
sudo apt install software-properties-common

After that run the commands to add the PPA.

sudo add-apt-repository ppa:deadsnakes/ppa

Finally, run the commands below to install Python 3.7

sudo apt update
sudo apt install python3.7

Installing Pip3 in ubuntu

sudo apt install python3-pip