How To Install perl-Template-Toolkit on CentOS 7

In this tutorial we learn how to install perl-Template-Toolkit on CentOS 7. perl-Template-Toolkit is Template processing system

Introduction

In this tutorial we learn how to install perl-Template-Toolkit on CentOS 7.

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 XML, POD, PostScript, LaTeX, and so on.

We can use yum or dnf to install perl-Template-Toolkit on CentOS 7. 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 CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install perl-Template-Toolkit using yum by running the following command:

sudo yum -y install perl-Template-Toolkit

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

sudo dnf -y install perl-Template-Toolkit

How To Uninstall perl-Template-Toolkit on CentOS 7

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 CentOS 7 using yum and dnf.