How To Install perl-MooX-late on AlmaLinux 8

In this tutorial we learn how to install perl-MooX-late in AlmaLinux 8. perl-MooX-late is Easily translate Moose code to Moo

Introduction

In this tutorial we learn how to install perl-MooX-late on AlmaLinux 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 AlmaLinux 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 AlmaLinux 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 AlmaLinux 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 AlmaLinux 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 AlmaLinux 8 using yum and dnf.