How To Install libparams-validationcompiler-perl on Ubuntu 18.04

In this tutorial we learn how to install libparams-validationcompiler-perl on Ubuntu 18.04. libparams-validationcompiler-perl is module to build an optimized subroutine parameter validator

Introduction

In this tutorial we learn how to install libparams-validationcompiler-perl on Ubuntu 18.04.

What is libparams-validationcompiler-perl

libparams-validationcompiler-perl is:

Params::ValidationCompiler creates a customized, highly efficient parameter checking subroutine. It can handle named or positional parameters, and can return the parameters as key/value pairs or a list of values.

In addition to type checks, it also supports parameter defaults, optional parameters, and extra “slurpy” parameters.

A parameter specification can be provided as either an arrayref (which expects positional params) or a hashref (which expects named params). Parameter types can be specified as Moose, Type::Tiny or Specio type objects. Parameters can be specified as being optional and can be provided with default values.

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

sudo apt-get -y install libparams-validationcompiler-perl

Install libparams-validationcompiler-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libparams-validationcompiler-perl

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

sudo aptitude -y install libparams-validationcompiler-perl

How To Uninstall libparams-validationcompiler-perl on Ubuntu 18.04

To uninstall only the libparams-validationcompiler-perl package we can use the following command:

sudo apt-get remove libparams-validationcompiler-perl

Uninstall libparams-validationcompiler-perl And Its Dependencies

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

sudo apt-get -y autoremove libparams-validationcompiler-perl

Remove libparams-validationcompiler-perl Configurations and Data

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

sudo apt-get -y purge libparams-validationcompiler-perl

Remove libparams-validationcompiler-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libparams-validationcompiler-perl

References

Summary

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