Python Linux Installation

Python Linux Installation

First of all, I have to say that in most linux distributions python is already installed.

Let’s check it out now.
Open the command client on your unix operating system and type python3

Yes, as you can see, it is installed and ready to run. But let’s assume that it is not installed and / or we want to upgrade it.
In this case we will do this.

To do this, follow these steps on the command line.

sudo apt install software-properties-common
sudo add-apt-repository ppa:deadsnakes/ppa

then

sudo apt update & upgrade

Now ready to install ..

sudo apt install python3.8

Let’s check after the installation is finished.

Comments

No comments yet. Why don’t you start the discussion?

Leave a Reply