How To Install python3-stdlib-list on Debian 12

Learn how to install python3-stdlib-list on Debian 12 with this tutorial. python3-stdlib-list is List of Python Standard Libraries (2.6-7, 3.2-9)

Introduction

In this tutorial we learn how to install python3-stdlib-list on Debian 12.

What is python3-stdlib-list

python3-stdlib-list is:

This package includes lists of all of the standard libraries for Python 2.6, 2.7, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, and 3.9 along with the code for scraping the official Python docs to get said lists.

There are three methods to install python3-stdlib-list on Debian 12. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install python3-stdlib-list Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install python3-stdlib-list using apt-get by running the following command:

sudo apt-get -y install python3-stdlib-list

Install python3-stdlib-list Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install python3-stdlib-list using apt by running the following command:

sudo apt -y install python3-stdlib-list

Install python3-stdlib-list Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install python3-stdlib-list using aptitude by running the following command:

sudo aptitude -y install python3-stdlib-list

How To Uninstall python3-stdlib-list on Debian 12

To uninstall only the python3-stdlib-list package we can use the following command:

sudo apt-get remove python3-stdlib-list

Uninstall python3-stdlib-list And Its Dependencies

To uninstall python3-stdlib-list and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove python3-stdlib-list

Remove python3-stdlib-list Configurations and Data

To remove python3-stdlib-list configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge python3-stdlib-list

Remove python3-stdlib-list configuration, data, and all of its dependencies

We can use the following command to remove python3-stdlib-list configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge python3-stdlib-list

Dependencies

python3-stdlib-list have the following dependencies:

References

Summary

In this tutorial we learn how to install python3-stdlib-list package on Debian 12 using different package management tools: apt, apt-get and aptitude.