How to install Python3
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
-
Download lastest version of Python from https://www.python.org/downloads/.
-
Run the executable file and follow the steps.
macOS
- Install Python using Homebrew:
brew install python
Leave a comment