Skip to content

Instantly share code, notes, and snippets.

@MichaelCurrin
Last active December 23, 2024 08:17
Show Gist options
  • Save MichaelCurrin/57d70f6aaba1b2b9f8a834ca5dd19a59 to your computer and use it in GitHub Desktop.
Save MichaelCurrin/57d70f6aaba1b2b9f8a834ca5dd19a59 to your computer and use it in GitHub Desktop.
Install Python on Linux distros

Debian/Ubuntu

Install using apt-get. sh $ sudo apt-get update $ sudo apt-get install python3 # OR python3.12

Warning: Note that for Debian, the major Python versions available are locked within a Debian release version. Therefore you must upgrade to a newer OS version to get a newer Python version. Or install Python from a different repository or build from source, but this is a custom installation which may be hard to get working or maintain, so I don't recommend it. For instance, when you install C headers or choose a Python version for your IDE, you system will not by default know to look in the custom location you've installed Python to. Using pyenv might make this easier though

Fedora

From the Fedora Project article, which also covers using multiple Python versions and virtual environments.

$ sudo dnf install python39  # i.e. 3.9

CentOS

$ sudo yum update
  • From Real Python.
    $ sudo yum install yum-utils
    $ sudo yum install https://centos7.iuscommunity.org/ius-release.rpm
  • From the article on How to install Python3 on CentOS 7.
    $ sudo yum install centos-release-scl
    $ sudo yum install rh-python39  # i.e. 3.9

ArchLinux

From Real Python.

$ packman -S python
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment