Install python and Pip manager in ubuntu linux flavour AWS EC2

Puneet

Python being most famous and easy language is fun to learn.

Python has made her separate identity in world for all round language for DATA Science , Web Development and automation

before installing python one of the most important thing is to confirm we don't have any previous version of python installed in machine, If already installed what version does it has .

Ubuntu being most famous linux flavour is first choice of beginners. By default, in Ubuntu ,we have apt package manager installed. You can follow our tutorial on Creating Ubuntu instance in AWS 

Here is our 

Step by Step guide for python and pip installation 


We can do that by simple trying following commands in terminal


python -version

update apt package manager 

apt-get update

install python3

apt-get install python3 -y

install pip 

apt-get install python3-pip -y


Post a Comment