How To Install libspecio-perl on Kali Linux

In this tutorial we learn how to install libspecio-perl on Kali Linux. libspecio-perl is Perl module providing type constraints and coercions

Introduction

In this tutorial we learn how to install libspecio-perl on Kali Linux.

What is libspecio-perl

libspecio-perl is:

Specio provides classes for representing type constraints and coercion, along with the syntactic sugar for declaring them.

This distribution ships with a set of builtin types representing the types provided by the Perl interpreter itself.

Note that this is not a proper type system for Perl. Nothing in this distribution will magically make the Perl interpreter start checking a value’s type on assignment to a variable.

Module Test::Specio requires the packages libtest-fatal-perl libtry-tiny-perl.

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

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

sudo apt-get -y install libspecio-perl

Install libspecio-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libspecio-perl

Install libspecio-perl Using aptitude

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

sudo aptitude update

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

sudo aptitude -y install libspecio-perl

How To Uninstall libspecio-perl on Kali Linux

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

sudo apt-get remove libspecio-perl

Uninstall libspecio-perl And Its Dependencies

To uninstall libspecio-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libspecio-perl

Remove libspecio-perl Configurations and Data

To remove libspecio-perl configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libspecio-perl

Remove libspecio-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libspecio-perl

Dependencies

libspecio-perl have the following dependencies:

References

Summary

In this tutorial we learn how to install libspecio-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.