How To Install libgraphics-colorobject-perl on Debian 9
Introduction
In this tutorial we learn how to install libgraphics-colorobject-perl on Debian 9.
What is libgraphics-colorobject-perl
libgraphics-colorobject-perl is:
Use this package to convert between all the common color spaces. As a pure Perl module, it is not very fast, and so it you want to convert entire images, this is probably not what you want. The emphasis is on completeness and accurate conversion.
Supported color spaces are: RGB (including sRGB, Rec 601, Rec 709, ITU, and about a dozen other RGB spaces), CMY, CMYK, HSL, HSV, XYZ, xyY, Lab, LCHab, Luv, LCHuv, YPbPr, YCbCr. Future support is planned for YUV, YIQ, YCC and possibly others.
Conversion between different RGB working spaces, and between different white-points, is fully supported.
There are three methods to install libgraphics-colorobject-perl on Debian 9. 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-colorobject-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-colorobject-perl using apt-get by running the following command:
sudo apt-get -y install libgraphics-colorobject-perl
Install libgraphics-colorobject-perl Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install libgraphics-colorobject-perl using apt by running the following command:
sudo apt -y install libgraphics-colorobject-perl
Install libgraphics-colorobject-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 libgraphics-colorobject-perl using aptitude by running the following command:
sudo aptitude -y install libgraphics-colorobject-perl
How To Uninstall libgraphics-colorobject-perl on Debian 9
To uninstall only the libgraphics-colorobject-perl package we can use the following command:
sudo apt-get remove libgraphics-colorobject-perl
Uninstall libgraphics-colorobject-perl And Its Dependencies
To uninstall libgraphics-colorobject-perl and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove libgraphics-colorobject-perl
Remove libgraphics-colorobject-perl Configurations and Data
To remove libgraphics-colorobject-perl configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge libgraphics-colorobject-perl
Remove libgraphics-colorobject-perl configuration, data, and all of its dependencies
We can use the following command to remove libgraphics-colorobject-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libgraphics-colorobject-perl
Dependencies
libgraphics-colorobject-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libgraphics-colorobject-perl package on Debian 9 using different package management tools: apt, apt-get and aptitude.