How To Install perl-GD on AlmaLinux 8

In this tutorial we learn how to install perl-GD in AlmaLinux 8. perl-GD is Perl interface to the GD graphics library

Introduction

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

What is perl-GD

This is a auto-loadable interface module for GD, a popular library for creating and manipulating PNG files. With this library you can create PNG images on the fly or modify existing files.

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

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

sudo dnf -y install perl-GD

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

sudo yum -y install perl-GD

How To Uninstall perl-GD on AlmaLinux 8

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

sudo dnf remove perl-GD

References

Summary

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