How to set up Python Environment in Linux

If your computer runs Linux, chances are extremely high that your distribution comes with Python pre-installed. To check if Python 3 is pre-installed run python3 --version command in terminal.
Tux (mascot) - Wikipedia
Now let's see how to install python on Linux.
  •  Open the Terminal run the following commands
$ sudo apt-get update
$ sudo apt-get install python3.8.2
Note: You can also replace 3.8.2 with any version of Python. We recommend you install the latest version on your machine.

Also check out
How to set up Python Environment in Windows
How to set up Python Environment in macOS

Comments

Popular posts from this blog

How to set up Python Environment in macOS

How to generate QR code with Python?

How to install Python modules?