How To Install libpackage-deprecationmanager-perl on Ubuntu 18.04

In this tutorial we learn how to install libpackage-deprecationmanager-perl on Ubuntu 18.04. libpackage-deprecationmanager-perl is module for managing deprecation warnings for Perl distributions

Introduction

In this tutorial we learn how to install libpackage-deprecationmanager-perl on Ubuntu 18.04.

What is libpackage-deprecationmanager-perl

libpackage-deprecationmanager-perl is:

Package::DeprecationManager allows you to manage a set of deprecations for one or more modules. It will issue one warning per deprecated feature used, optionally with regard to an -api_version specified by users of your module.

There are three methods to install libpackage-deprecationmanager-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 libpackage-deprecationmanager-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 libpackage-deprecationmanager-perl using apt-get by running the following command:

sudo apt-get -y install libpackage-deprecationmanager-perl

Install libpackage-deprecationmanager-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libpackage-deprecationmanager-perl

Install libpackage-deprecationmanager-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 libpackage-deprecationmanager-perl using aptitude by running the following command:

sudo aptitude -y install libpackage-deprecationmanager-perl

How To Uninstall libpackage-deprecationmanager-perl on Ubuntu 18.04

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

sudo apt-get remove libpackage-deprecationmanager-perl

Uninstall libpackage-deprecationmanager-perl And Its Dependencies

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

sudo apt-get -y autoremove libpackage-deprecationmanager-perl

Remove libpackage-deprecationmanager-perl Configurations and Data

To remove libpackage-deprecationmanager-perl configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libpackage-deprecationmanager-perl

Remove libpackage-deprecationmanager-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libpackage-deprecationmanager-perl

References

Summary

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