How To Install perl-Pod-POM on AlmaLinux 8

In this tutorial we learn how to install perl-Pod-POM in AlmaLinux 8. perl-Pod-POM is Object-oriented interface to Perl POD documents

Introduction

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

What is perl-Pod-POM

This module implements a parser to convert Pod documents into a simple object model form known hereafter as the Pod Object Model. The object model is generated as a hierarchical tree of nodes, each of which represents a different element of the original document. The tree can be walked manually and the nodes examined, printed or otherwise manipulated. In addition, Pod which can automatically traverse the tree, or section thereof, and generate an output representation in one form or another.

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

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

sudo dnf -y install perl-Pod-POM

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

sudo yum -y install perl-Pod-POM

How To Uninstall perl-Pod-POM on AlmaLinux 8

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

sudo dnf remove perl-Pod-POM

References

Summary

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