How To Install libcolor-calc-perl on Debian 10
Introduction
In this tutorial we learn how to install libcolor-calc-perl
on Debian 10.
What is libcolor-calc-perl
libcolor-calc-perl is:
Color::Calc is a Perl module that implements simple calculations with RGB colors. This can be used to create a full color scheme from a few colors and provides a variety of output styles including hexadecimal, 3-tuple as well as versions suitable for HTML and PDF.
There are three methods to install libcolor-calc-perl
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libcolor-calc-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 libcolor-calc-perl
using apt-get
by running the following command:
sudo apt-get -y install libcolor-calc-perl
Install libcolor-calc-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libcolor-calc-perl
using apt
by running the following command:
sudo apt -y install libcolor-calc-perl
Install libcolor-calc-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 Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libcolor-calc-perl
using aptitude
by running the following command:
sudo aptitude -y install libcolor-calc-perl
How To Uninstall libcolor-calc-perl on Debian 10
To uninstall only the libcolor-calc-perl
package we can use the following command:
sudo apt-get remove libcolor-calc-perl
Uninstall libcolor-calc-perl And Its Dependencies
To uninstall libcolor-calc-perl
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove libcolor-calc-perl
Remove libcolor-calc-perl Configurations and Data
To remove libcolor-calc-perl
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge libcolor-calc-perl
Remove libcolor-calc-perl configuration, data, and all of its dependencies
We can use the following command to remove libcolor-calc-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libcolor-calc-perl
Dependencies
libcolor-calc-perl have the following dependencies:
- perl
- libgraphics-colornames-perl
- libgraphics-colornames-www-perl
- libgraphics-colorobject-perl
- libparams-validate-perl
References
Summary
In this tutorial we learn how to install libcolor-calc-perl
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.