How To Install python36-coloredlogs on CentOS 7

In this tutorial we learn how to install python36-coloredlogs on CentOS 7. python36-coloredlogs is Documentation for the ‘coloredlogs’ Python module

Introduction

In this tutorial we learn how to install python36-coloredlogs on CentOS 7.

What is python36-coloredlogs

The coloredlogs package enables colored terminal output for Python’s logging module. The ColoredFormatter class inherits from logging.Formatter and uses ANSI escape sequences to render your logging messages in color. It uses only standard colors so it should work on any UNIX terminal.

We can use yum or dnf to install python36-coloredlogs on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install python36-coloredlogs.

Install python36-coloredlogs on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install python36-coloredlogs using yum by running the following command:

sudo yum -y install python36-coloredlogs

Install python36-coloredlogs on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install python36-coloredlogs using dnf by running the following command:

sudo dnf -y install python36-coloredlogs

How To Uninstall python36-coloredlogs on CentOS 7

To uninstall only the python36-coloredlogs package we can use the following command:

sudo dnf remove python36-coloredlogs

References

Summary

In this tutorial we learn how to install python36-coloredlogs on CentOS 7 using yum and dnf.