How to install Python3

less than 1 minute read

Linux

Debian-based (Debian, Ubuntu, Mint, etc…)

sudo apt-get update
sudo apt-get install python3.6

RPM-based (Red Hat Linux, CentOS, Fedora, openSuse, Mandrake Linux)

sudo dnf update
sudo dnf install python3

Windows

  1. Download lastest version of Python from https://www.python.org/downloads/.

  2. Run the executable file and follow the steps.

macOS

  1. Install Python using Homebrew:
     brew install python
    

Categories:

Updated:

Leave a comment