How To Install python3-django-debug-toolbar on AlmaLinux 8

In this tutorial we learn how to install python3-django-debug-toolbar in AlmaLinux 8. python3-django-debug-toolbar is Configurable set of panels that display various debug information

Introduction

In this tutorial we learn how to install python3-django-debug-toolbar on AlmaLinux 8.

What is python3-django-debug-toolbar

The Django Debug Toolbar is a configurable set of panels that display various debug information about the current request/response and when clicked, display more details about the panel’s content. Currently, the following panels have been written and are working - Django version - Request timer - A list of settings in settings.py - Common HTTP headers - GET/POST/cookie/session variable display - Templates and context used, and their template paths - SQL queries including time to execute and links to EXPLAIN each query - List of signals, their args and receivers - Logging output via Python’s built-in logging, or via the logbook module

We can use yum or dnf to install python3-django-debug-toolbar on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install python3-django-debug-toolbar.

Install python3-django-debug-toolbar on AlmaLinux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install python3-django-debug-toolbar using dnf by running the following command:

sudo dnf -y install python3-django-debug-toolbar

Install python3-django-debug-toolbar on AlmaLinux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install python3-django-debug-toolbar using yum by running the following command:

sudo yum -y install python3-django-debug-toolbar

How To Uninstall python3-django-debug-toolbar on AlmaLinux 8

To uninstall only the python3-django-debug-toolbar package we can use the following command:

sudo dnf remove python3-django-debug-toolbar

References

Summary

In this tutorial we learn how to install python3-django-debug-toolbar on AlmaLinux 8 using yum and dnf.