How To Install perl-Carp-Clan on CentOS 7

In this tutorial we learn how to install perl-Carp-Clan on CentOS 7. perl-Carp-Clan is Perl module to print improved warning messages

Introduction

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

What is perl-Carp-Clan

This module reports errors from the perspective of the caller of a “clan” of modules, similar to “Carp.pm” itself. But instead of giving it a number of levels to skip on the calling stack, you give it a pattern to characterize the package names of the “clan” of modules which shall never be blamed for any error.

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

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

sudo yum -y install perl-Carp-Clan

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

sudo dnf -y install perl-Carp-Clan

How To Uninstall perl-Carp-Clan on CentOS 7

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

sudo dnf remove perl-Carp-Clan

References

Summary

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