How To Install python2-chameleon on AlmaLinux 8

In this tutorial we learn how to install python2-chameleon in AlmaLinux 8. python2-chameleon is XML-based template compiler

Introduction

In this tutorial we learn how to install python2-chameleon on AlmaLinux 8.

What is python2-chameleon

Chameleon is an XML attribute language template compiler. It comes with implementations for the Zope Page Templates (ZPT) and Genshi templating languages. The engine compiles templates into Python byte-code. This results in performance which is on average 10-15 times better than implementations which use run-time interpretation.

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

Install python2-chameleon 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 python2-chameleon using dnf by running the following command:

sudo dnf -y install python2-chameleon

Install python2-chameleon 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 python2-chameleon using yum by running the following command:

sudo yum -y install python2-chameleon

How To Uninstall python2-chameleon on AlmaLinux 8

To uninstall only the python2-chameleon package we can use the following command:

sudo dnf remove python2-chameleon

References

Summary

In this tutorial we learn how to install python2-chameleon on AlmaLinux 8 using yum and dnf.