How To Install perl-MooX-late on Rocky Linux 8
Introduction
In this tutorial we learn how to install perl-MooX-late
on Rocky Linux 8.
What is perl-MooX-late
Moo is a light-weight object oriented programming framework that aims to be compatible with Moose. It does this by detecting when Moose has been loaded, and automatically “inflating” its classes and roles to full Moose classes and roles. This way, Moo classes can consume Moose roles, Moose classes can extend Moo classes, and so forth.
We can use yum
or dnf
to install perl-MooX-late
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install perl-MooX-late.
Install perl-MooX-late on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install perl-MooX-late
using dnf
by running the following command:
sudo dnf -y install perl-MooX-late
Install perl-MooX-late on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install perl-MooX-late
using yum
by running the following command:
sudo yum -y install perl-MooX-late
How To Uninstall perl-MooX-late on Rocky Linux 8
To uninstall only the perl-MooX-late
package we can use the following command:
sudo dnf remove perl-MooX-late
perl-MooX-late Package Contents on Rocky Linux 8
/usr/share/doc/perl-MooX-late
/usr/share/doc/perl-MooX-late/Changes
/usr/share/doc/perl-MooX-late/README
/usr/share/licenses/perl-MooX-late
/usr/share/licenses/perl-MooX-late/LICENSE
/usr/share/man/man3/MooX::late.3pm.gz
/usr/share/perl5/vendor_perl/MooX
/usr/share/perl5/vendor_perl/MooX/late.pm
References
Summary
In this tutorial we learn how to install perl-MooX-late
on Rocky Linux 8 using yum and dnf.