How To Install libperl-prereqscanner-notquitelite-perl on Kali Linux

In this tutorial we learn how to install libperl-prereqscanner-notquitelite-perl on Kali Linux. libperl-prereqscanner-notquitelite-perl is Perl module for scanning Perl code for prerequisites

Introduction

In this tutorial we learn how to install libperl-prereqscanner-notquitelite-perl on Kali Linux.

What is libperl-prereqscanner-notquitelite-perl

libperl-prereqscanner-notquitelite-perl is:

Perl::PrereqScanner::NotQuiteLite is yet another prerequisites scanner. It passes almost all the scanning tests for Perl::PrereqScanner and Module::ExtractUse (ie. except for a few dubious ones), and runs slightly faster than PPI-based Perl::PrereqScanner. However, it doesn’t run as fast as Perl::PrereqScanner::Lite (which uses an XS lexer).

Perl::PrereqScanner::NotQuiteLite also recognizes eval. Prerequisites in eval are not considered as requirements, but they may be collected as suggestions.

Conditional requirements or requirements loaded in a block are treated as recommends. Noed modules are stored separately (since 0.94). You may or may not need to merge them into requires.

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

sudo apt-get -y install libperl-prereqscanner-notquitelite-perl

Install libperl-prereqscanner-notquitelite-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libperl-prereqscanner-notquitelite-perl

Install libperl-prereqscanner-notquitelite-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 libperl-prereqscanner-notquitelite-perl using aptitude by running the following command:

sudo aptitude -y install libperl-prereqscanner-notquitelite-perl

How To Uninstall libperl-prereqscanner-notquitelite-perl on Kali Linux

To uninstall only the libperl-prereqscanner-notquitelite-perl package we can use the following command:

sudo apt-get remove libperl-prereqscanner-notquitelite-perl

Uninstall libperl-prereqscanner-notquitelite-perl And Its Dependencies

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

sudo apt-get -y autoremove libperl-prereqscanner-notquitelite-perl

Remove libperl-prereqscanner-notquitelite-perl Configurations and Data

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

sudo apt-get -y purge libperl-prereqscanner-notquitelite-perl

Remove libperl-prereqscanner-notquitelite-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libperl-prereqscanner-notquitelite-perl

Dependencies

libperl-prereqscanner-notquitelite-perl have the following dependencies:

References

Summary

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