How To Install perl-Pod-POM on CentOS 7

In this tutorial we learn how to install perl-Pod-POM on CentOS 7. perl-Pod-POM is Object-oriented interface to Perl POD documents

Introduction

In this tutorial we learn how to install perl-Pod-POM on CentOS 7.

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 and provides view objects 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 CentOS 7. 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 CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install perl-Pod-POM

Install perl-Pod-POM on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

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

sudo dnf -y install perl-Pod-POM

How To Uninstall perl-Pod-POM on CentOS 7

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 CentOS 7 using yum and dnf.