How To Install perl-mixin on Fedora 36

In this tutorial we learn how to install perl-mixin in Fedora 36. perl-mixin is Mixin inheritance, an alternative to multiple inheritance

Introduction

In this tutorial we learn how to install perl-mixin on Fedora 36.

What is perl-mixin

Mixin inheritance is an alternative to the usual multiple-inheritance and solves the problem of knowing which parent will be called. It also solves a number of tricky problems like diamond inheritance.

We can use yum or dnf to install perl-mixin on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install perl-mixin.

Install perl-mixin on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install perl-mixin using dnf by running the following command:

sudo dnf -y install perl-mixin

Install perl-mixin on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install perl-mixin using yum by running the following command:

sudo yum -y install perl-mixin

How To Uninstall perl-mixin on Fedora 36

To uninstall only the perl-mixin package we can use the following command:

sudo dnf remove perl-mixin

perl-mixin Package Contents on Fedora 36

/usr/share/doc/perl-mixin
/usr/share/doc/perl-mixin/Changes
/usr/share/doc/perl-mixin/README
/usr/share/licenses/perl-mixin
/usr/share/licenses/perl-mixin/LICENSE
/usr/share/man/man3/mixin.3pm.gz
/usr/share/man/man3/mixin::with.3pm.gz
/usr/share/perl5/vendor_perl/mixin
/usr/share/perl5/vendor_perl/mixin.pm
/usr/share/perl5/vendor_perl/mixin/with.pm

References

Summary

In this tutorial we learn how to install perl-mixin on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).