How To Install perl-MooX-late on CentOS 8
Introduction
In this tutorial we learn how to install perl-MooX-late on CentOS 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 CentOS 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 CentOS 8 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install perl-MooX-late using yum by running the following command:
sudo yum -y install perl-MooX-late
Install perl-MooX-late on CentOS 8 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-MooX-late using dnf by running the following command:
sudo dnf -y install perl-MooX-late
How To Uninstall perl-MooX-late on CentOS 8
To uninstall only the perl-MooX-late package we can use the following command:
sudo dnf remove perl-MooX-late
References
Summary
In this tutorial we learn how to install perl-MooX-late on CentOS 8 using yum and dnf.