How To Install cpl-plugin-hawki on Debian 9
Introduction
In this tutorial we learn how to install cpl-plugin-hawki
on Debian 9.
What is cpl-plugin-hawki
cpl-plugin-hawki is:
This is the data reduction pipeline for the HAWK-I instrument of the Very Large Telescope (VLT) from the European Southern Observatory (ESO).
HAWK-I is a near-infrared (0.85-2.5 ?m ) wide-field imager. It is being offered for the first time in Period 81. The instrument is cryogenic (120 K, detectors at 80 K) and has a full reflective design. The light passes four mirrors and two filter wheels before hitting a mosaic of four Hawaii 2RG 2048
- 2048 pixels detectors. The final F-ratio is F/4.36 ( 1 arcsec on the sky corresponds to 169 ?m on the detector).
There are three methods to install cpl-plugin-hawki
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 cpl-plugin-hawki Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install cpl-plugin-hawki
using apt-get
by running the following command:
sudo apt-get -y install cpl-plugin-hawki
Install cpl-plugin-hawki Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install cpl-plugin-hawki
using apt
by running the following command:
sudo apt -y install cpl-plugin-hawki
Install cpl-plugin-hawki 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 cpl-plugin-hawki
using aptitude
by running the following command:
sudo aptitude -y install cpl-plugin-hawki
How To Uninstall cpl-plugin-hawki on Debian 9
To uninstall only the cpl-plugin-hawki
package we can use the following command:
sudo apt-get remove cpl-plugin-hawki
Uninstall cpl-plugin-hawki And Its Dependencies
To uninstall cpl-plugin-hawki
and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove cpl-plugin-hawki
Remove cpl-plugin-hawki Configurations and Data
To remove cpl-plugin-hawki
configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge cpl-plugin-hawki
Remove cpl-plugin-hawki configuration, data, and all of its dependencies
We can use the following command to remove cpl-plugin-hawki
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge cpl-plugin-hawki
Dependencies
cpl-plugin-hawki have the following dependencies:
References
Summary
In this tutorial we learn how to install cpl-plugin-hawki
package on Debian 9 using different package management tools: apt
, apt-get
and aptitude
.