How to Install and Uninstall perl-Module-Load.noarch Package on Amazon Linux 2

Last updated: November 27,2024

1. Install "perl-Module-Load.noarch" package

This guide covers the steps necessary to install perl-Module-Load.noarch on Amazon Linux 2

$ sudo yum makecache $ sudo yum install perl-Module-Load.noarch

2. Uninstall "perl-Module-Load.noarch" package

This guide let you learn how to uninstall perl-Module-Load.noarch on Amazon Linux 2:

$ sudo yum remove perl-Module-Load.noarch $ sudo yum autoremove

3. Information about the perl-Module-Load.noarch package on Amazon Linux 2

Loaded plugins: ovl, priorities
Available Packages
Name : perl-Module-Load
Arch : noarch
Epoch : 1
Version : 0.24
Release : 3.amzn2
Size : 11 k
Repo : amzn2-core/2/x86_64
Summary : Run-time require of both modules and files
URL : http://search.cpan.org/dist/Module-Load/
License : GPL+ or Artistic
Description : 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.