Python is a powerful programming language known for its simplicity and readability. It is used in various fields, like web development, data analysis, artificial intelligence, automation, and more. Python’s extensive standard library and supportive community make it an excellent choice for both beginners and experienced developers. Installing Python on your Debian 12 system will enable you to harness its capabilities for a wide range of applications and development projects. In this guide, we will learn how to install Python on Debian 12.
Let us proceed with the steps:
- Open the terminal on your Debian 12 system.
- Update the package list using the command:Ensure that your package list is updated. The below command will update your local copy.
sudo apt update
- Check the available Python version:Before installing Python, check the version available in the repositories using the ‘apt’ tool with ‘the show’ option and ‘python3’ as the package name:
apt show python3
- Install PythonAfter confirmation of the Python version, you can install it using the below command:
sudo apt install python3
- Confirm the installation:After the installation process is complete, verify the Python installation by checking its version, which will show the recently installed version:
python3 –version
Installing Other Versions of Python from an External PPA
Sometimes, the default repositories do not contain the latest Python versions, or you might need a specific version for a particular project. The Deadsnakes PPA is a popular and trusted source that provides various Python versions for Debian-based distributions.
- Install the prerequisites with the command:
sudo apt install software-properties-common
- Add the Deadsnakes PPA to get the latest Python versions:After installing the package, add the deadsnakes PPA.
sudo add-apt-repository ppa:deadsnakes/ppa
- Update the package list again:
sudo apt update
- Install Python using the command below:
sudo apt install python3.x
(replace 3. x with the desired version)
- Verify the installation by checking the Python version:
python3.x –version
Installing Python on Debian 12 is a straightforward process that opens up numerous possibilities for development and automation. By following the steps outlined in this guide, you can quickly set up the default Python version or install other versions from an external PPA to suit your specific needs. Whether you’re a beginner or an experienced developer, having Python installed on your Debian 12 system enables you to take advantage of its powerful features and extensive libraries for a wide range of applications. If you need help, feel free to contact our support team, which is available 24/7.
You can learn about How to Use Python to Connect to MySQL.