How To Install python3-chameleon on AlmaLinux 8
Introduction
In this tutorial we learn how to install python3-chameleon
on AlmaLinux 8.
What is python3-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 python3-chameleon
on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install python3-chameleon.
Install python3-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 python3-chameleon
using dnf
by running the following command:
sudo dnf -y install python3-chameleon
Install python3-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 python3-chameleon
using yum
by running the following command:
sudo yum -y install python3-chameleon
How To Uninstall python3-chameleon on AlmaLinux 8
To uninstall only the python3-chameleon
package we can use the following command:
sudo dnf remove python3-chameleon
References
Summary
In this tutorial we learn how to install python3-chameleon
on AlmaLinux 8 using yum and dnf.