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
From the Fedora Project article, which also covers using multiple Python versions and virtual environments.
$ sudo dnf install python39 # i.e. 3.9
$ 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
From Real Python.
$ packman -S python