How To Install libpod-parser-perl on Debian 11

In this tutorial we learn how to install libpod-parser-perl on Debian 11. libpod-parser-perl is modules for parsing/translating POD format documents

Introduction

In this tutorial we learn how to install libpod-parser-perl on Debian 11.

What is libpod-parser-perl

libpod-parser-perl is:

This package contains the following mdoules for using Perl5 “pod” (Plain Old Documentation).

“Pod::Parser”, which provides a base class for parsing and selecting sections of POD documentation from an input stream.

“Pod::Select”, which provides a subclass of Pod::Parser and an exported function named “podselect()” to dump selected sections of raw pod documentation from an input stream.

“Pod::PlainText”, which is a replacement for “Pod::Text” and the corresponding “pod2text()” function. It is derived from the Pod::Parser class. As of perl 5.00_58, Pod::PlainText has been re-written by Russ Allbery, and has been renamed to Pod::Text in the core Perl distribution (replacing the previous implementation of Pod::Text). The Pod::PlainText module is still provided with Pod::Parser solely for backward compatibility.

“Pod::InputObjects”: Some input objects needed by Pod::Parser, and for advanced users of Pod::Parser that need more about a command besides its name and text.

“Pod::ParseUtils”, a module with several object-oriented helpers for POD parsing and processing. Probably the most important is Pod::Hyperlink for parsing and expanding POD hyperlinks L<…>.

This distribution is considered to be legacy - it has been superseded by Pod::Simple which brings more robustness, unicode and various other benefits. It has been removed from perl core after 5.31.0, and is packaged only for backward compatibility.

There are three methods to install libpod-parser-perl on Debian 11. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libpod-parser-perl Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libpod-parser-perl using apt-get by running the following command:

sudo apt-get -y install libpod-parser-perl

Install libpod-parser-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libpod-parser-perl using apt by running the following command:

sudo apt -y install libpod-parser-perl

Install libpod-parser-perl Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libpod-parser-perl using aptitude by running the following command:

sudo aptitude -y install libpod-parser-perl

How To Uninstall libpod-parser-perl on Debian 11

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

sudo apt-get remove libpod-parser-perl

Uninstall libpod-parser-perl And Its Dependencies

To uninstall libpod-parser-perl and its dependencies that are no longer needed by Debian 11, we can use the command below:

sudo apt-get -y autoremove libpod-parser-perl

Remove libpod-parser-perl Configurations and Data

To remove libpod-parser-perl configuration and data from Debian 11 we can use the following command:

sudo apt-get -y purge libpod-parser-perl

Remove libpod-parser-perl configuration, data, and all of its dependencies

We can use the following command to remove libpod-parser-perl configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libpod-parser-perl

Dependencies

libpod-parser-perl have the following dependencies:

References

Summary

In this tutorial we learn how to install libpod-parser-perl package on Debian 11 using different package management tools: apt, apt-get and aptitude.