How To Install perl-Template-Toolkit on AlmaLinux 8

In this tutorial we learn how to install perl-Template-Toolkit in AlmaLinux 8. perl-Template-Toolkit is Template processing system

Introduction

In this tutorial we learn how to install perl-Template-Toolkit on AlmaLinux 8.

What is perl-Template-Toolkit

The Template Toolkit is a collection of modules which implement a fast, flexible, powerful and extensible template processing system. It was originally designed and remains primarily useful for generating dynamic web content, but it can be used equally well for processing any other kind of text based documents LaTeX, and so on.

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

Install perl-Template-Toolkit 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 perl-Template-Toolkit using dnf by running the following command:

sudo dnf -y install perl-Template-Toolkit

Install perl-Template-Toolkit 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 perl-Template-Toolkit using yum by running the following command:

sudo yum -y install perl-Template-Toolkit

How To Uninstall perl-Template-Toolkit on AlmaLinux 8

To uninstall only the perl-Template-Toolkit package we can use the following command:

sudo dnf remove perl-Template-Toolkit

References

Summary

In this tutorial we learn how to install perl-Template-Toolkit on AlmaLinux 8 using yum and dnf.