How To Install perl-CHI on CentOS 7

In this tutorial we learn how to install perl-CHI on CentOS 7. perl-CHI is Unified cache handling interface

Introduction

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

What is perl-CHI

CHI provides a unified caching API, designed to assist a developer in persisting data for a specified period of time.

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

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

sudo yum -y install perl-CHI

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

sudo dnf -y install perl-CHI

How To Uninstall perl-CHI on CentOS 7

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

sudo dnf remove perl-CHI

References

Summary

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