How To Install perl-Module-Load on Fedora 36

In this tutorial we learn how to install perl-Module-Load in Fedora 36. 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 Fedora 36.

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 Fedora 36. 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 Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install perl-Module-Load using dnf by running the following command:

sudo dnf -y install perl-Module-Load

Install perl-Module-Load on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

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

sudo yum -y install perl-Module-Load

How To Uninstall perl-Module-Load on Fedora 36

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

sudo dnf remove perl-Module-Load

perl-Module-Load Package Contents on Fedora 36

/usr/share/doc/perl-Module-Load
/usr/share/doc/perl-Module-Load/CHANGES
/usr/share/doc/perl-Module-Load/README
/usr/share/man/man3/Module::Load.3pm.gz
/usr/share/perl5/vendor_perl/Module
/usr/share/perl5/vendor_perl/Module/Load.pm

References

Summary

In this tutorial we learn how to install perl-Module-Load on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).