How To Install libgraphics-color-perl on Kali Linux

In this tutorial we learn how to install libgraphics-color-perl on Kali Linux. libgraphics-color-perl is module for manipulating colours in different colour spaces

Introduction

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

What is libgraphics-color-perl

libgraphics-color-perl is:

Graphics::Color is a Perl module that provides a device- and library-agnostic system for creating and manipulating colour definitions in various colour spaces. It currently supports colours specified as CMYK, HSL, RGB, YIQ and YUV.

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

sudo apt-get -y install libgraphics-color-perl

Install libgraphics-color-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libgraphics-color-perl

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

sudo aptitude -y install libgraphics-color-perl

How To Uninstall libgraphics-color-perl on Kali Linux

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

sudo apt-get remove libgraphics-color-perl

Uninstall libgraphics-color-perl And Its Dependencies

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

sudo apt-get -y autoremove libgraphics-color-perl

Remove libgraphics-color-perl Configurations and Data

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

sudo apt-get -y purge libgraphics-color-perl

Remove libgraphics-color-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libgraphics-color-perl

Dependencies

libgraphics-color-perl have the following dependencies:

References

Summary

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