How To Install delaboratory on Debian 10
Introduction
In this tutorial we learn how to install delaboratory
on Debian 10.
What is delaboratory
delaboratory is:
Features:
- floating point precision (not 8-bit like Gimp, not 16-bit like most raw processors)
- native support for multiple colorspaces (sRGB, ProPhoto RGB, LAB, CMYK, LCH, HSL, HSV, BW)
- non destructive editing (adjustment layers)
- KISS design
- realtime preview
- basic operations: CMYK curves, CMYK levels, RGB curves, RGB levels, white balance in LAB, saturation in LAB, LAB curves, BW curve, HSV equalizer, LCH equalizer, recover shadows/highlights, vignette, local contrast, LAB/BW/RGB/CMYK gradients
- expert operations: levels, curves, equalizer, exposure, saturation, white balance, fill, tone, local contrast, auto_dodge/auto_burn, sharpen, vignette, gradient, gaussian blur, recover highlights, recover shadows, channel mixer, high pass, c2g, copy
- RAW support via dcraw
- up to 5 color samplers
- histograms and color matrices
- many blend modes (multiply, screen, overlay, inverted overlay, dodge, burn, add, grain extract, grain merge, sub, difference, darken, lighten), color/luminosity blending for RGB and CMYK
There are three methods to install delaboratory
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 delaboratory Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install delaboratory
using apt-get
by running the following command:
sudo apt-get -y install delaboratory
Install delaboratory Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install delaboratory
using apt
by running the following command:
sudo apt -y install delaboratory
Install delaboratory 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 delaboratory
using aptitude
by running the following command:
sudo aptitude -y install delaboratory
How To Uninstall delaboratory on Debian 10
To uninstall only the delaboratory
package we can use the following command:
sudo apt-get remove delaboratory
Uninstall delaboratory And Its Dependencies
To uninstall delaboratory
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove delaboratory
Remove delaboratory Configurations and Data
To remove delaboratory
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge delaboratory
Remove delaboratory configuration, data, and all of its dependencies
We can use the following command to remove delaboratory
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge delaboratory
Dependencies
delaboratory have the following dependencies:
References
Summary
In this tutorial we learn how to install delaboratory
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.