How to Install and Uninstall perl-Module-Load.noarch Package on Fedora 39

Last updated: January 11,2025

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

Please follow the guidance below to install perl-Module-Load.noarch on Fedora 39

$ sudo dnf update $ sudo dnf install perl-Module-Load.noarch

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

This guide covers the steps necessary to uninstall perl-Module-Load.noarch on Fedora 39:

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

3. Information about the perl-Module-Load.noarch package on Fedora 39

Last metadata expiration check: 3:06:02 ago on Thu Mar 7 17:44:52 2024.
Available Packages
Name : perl-Module-Load
Epoch : 1
Version : 0.36
Release : 500.fc39
Architecture : noarch
Size : 17 k
Source : perl-Module-Load-0.36-500.fc39.src.rpm
Repository : fedora
Summary : Run-time require of both modules and files
URL : https://metacpan.org/release/Module-Load
License : GPL-1.0-or-later OR Artistic-1.0-Perl
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.