How To Install perl-Module-Load on CentOS 7

In this tutorial we learn how to install perl-Module-Load on CentOS 7. perl-Module-Load is Run-time require of both modules and files

Introduction

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

What is perl-Module-Load

If you consult “perldoc -f require” you will see that “require” will behave differently when given a bare-word or a string. In the case of a string, “require” assumes you are wanting to load a file. But in the case of a bare-word, it assumes you mean a module. This gives nasty overhead when you are trying to dynamically require modules at run-time, since you will need to change the module notation to a file notation fitting the particular platform you are on. “load” eliminates the need for this overhead and will just DWYM.

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

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

sudo yum -y install perl-Module-Load

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

sudo dnf -y install perl-Module-Load

How To Uninstall perl-Module-Load on CentOS 7

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

sudo dnf remove perl-Module-Load

References

Summary

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