How To Install perl-DBIx-Class on AlmaLinux 8

In this tutorial we learn how to install perl-DBIx-Class in AlmaLinux 8. perl-DBIx-Class is Extensible and flexible object <-> relational mapper

Introduction

In this tutorial we learn how to install perl-DBIx-Class on AlmaLinux 8.

What is perl-DBIx-Class

This is an SQL to OO mapper with an object API inspired by Class (and a compatibility layer as a springboard for porting) and a result-set API that allows abstract encapsulation of database operations. It aims to make representing queries in your code as perlish as possible while still providing access to as many of the capabilities of the database as possible, including retrieving related records from multiple tables in a single query, JOIN, LEFT JOIN, COUNT, DISTINCT, GROUP BY and HAVING support.

We can use yum or dnf to install perl-DBIx-Class on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install perl-DBIx-Class.

Install perl-DBIx-Class 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-DBIx-Class using dnf by running the following command:

sudo dnf -y install perl-DBIx-Class

Install perl-DBIx-Class 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-DBIx-Class using yum by running the following command:

sudo yum -y install perl-DBIx-Class

How To Uninstall perl-DBIx-Class on AlmaLinux 8

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

sudo dnf remove perl-DBIx-Class

References

Summary

In this tutorial we learn how to install perl-DBIx-Class on AlmaLinux 8 using yum and dnf.