How To Install libcarp-datum-perl on Ubuntu 18.04

In this tutorial we learn how to install libcarp-datum-perl on Ubuntu 18.04. libcarp-datum-perl is Debugging And Tracing Ultimate Module (for perl)

Introduction

In this tutorial we learn how to install libcarp-datum-perl on Ubuntu 18.04.

What is libcarp-datum-perl

libcarp-datum-perl is:

Carp::Datum implements the following features:

  • Programming by contract: pre-conditions, post-conditions, assertions.
  • Flow control tracing: routine entry, arguments, returned values
  • Dynamic (i.e. runtime) configuration via mini language to tailor debugging and/or tracing at the routine / file / package / type level.
  • Ability to statically remove all assertions and flow control tracing hooks in modules making use of Carp::Datum.
  • Cooperation with Log::Agent for tracing.

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

sudo apt-get -y install libcarp-datum-perl

Install libcarp-datum-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libcarp-datum-perl

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

sudo aptitude -y install libcarp-datum-perl

How To Uninstall libcarp-datum-perl on Ubuntu 18.04

To uninstall only the libcarp-datum-perl package we can use the following command:

sudo apt-get remove libcarp-datum-perl

Uninstall libcarp-datum-perl And Its Dependencies

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

sudo apt-get -y autoremove libcarp-datum-perl

Remove libcarp-datum-perl Configurations and Data

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

sudo apt-get -y purge libcarp-datum-perl

Remove libcarp-datum-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libcarp-datum-perl

References

Summary

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