How To Install libhtml-element-extended-perl on Ubuntu 18.04

In this tutorial we learn how to install libhtml-element-extended-perl on Ubuntu 18.04. libhtml-element-extended-perl is extended HTML

Introduction

In this tutorial we learn how to install libhtml-element-extended-perl on Ubuntu 18.04.

What is libhtml-element-extended-perl

libhtml-element-extended-perl is:

A package of several enhanced HTML::Element classes, most of which arose during the effort to implement an HTML::Element based table class.

There are three methods to install libhtml-element-extended-perl on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libhtml-element-extended-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 libhtml-element-extended-perl using apt-get by running the following command:

sudo apt-get -y install libhtml-element-extended-perl

Install libhtml-element-extended-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libhtml-element-extended-perl using apt by running the following command:

sudo apt -y install libhtml-element-extended-perl

Install libhtml-element-extended-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 Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libhtml-element-extended-perl using aptitude by running the following command:

sudo aptitude -y install libhtml-element-extended-perl

How To Uninstall libhtml-element-extended-perl on Ubuntu 18.04

To uninstall only the libhtml-element-extended-perl package we can use the following command:

sudo apt-get remove libhtml-element-extended-perl

Uninstall libhtml-element-extended-perl And Its Dependencies

To uninstall libhtml-element-extended-perl and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove libhtml-element-extended-perl

Remove libhtml-element-extended-perl Configurations and Data

To remove libhtml-element-extended-perl configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libhtml-element-extended-perl

Remove libhtml-element-extended-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libhtml-element-extended-perl

References

Summary

In this tutorial we learn how to install libhtml-element-extended-perl package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.