How To Install theli on Kali Linux
Introduction
In this tutorial we learn how to install theli on Kali Linux.
What is theli
theli is:
THELI is a powerful tool to reduce optical, near- and mid-infrared astronomical imaging data, supporting more than 100 different single- and multi-chip instruments at professional observatories world-wide. The graphical user interface and internal data model allow the user to concentrate on the highly automated data processing, without being side-tracked by the specific complexities and characteristics of optical and infrared instruments. THELI is fully scalable on multi-processor machines with shared memory, allowing fast processing also of large data sets. The integrated data viewer allows access to any products on drive as well as in memory. User-defined instruments can be added, making THELI interesting for amateur astronomers as well.
There are three methods to install theli 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 theli Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install theli using apt-get by running the following command:
sudo apt-get -y install theliInstall theli Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install theli using apt by running the following command:
sudo apt -y install theliInstall theli 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 updateAfter updating apt database, We can install theli using aptitude by running the following command:
sudo aptitude -y install theliHow To Uninstall theli on Kali Linux
To uninstall only the theli package we can use the following command:
sudo apt-get remove theliUninstall theli And Its Dependencies
To uninstall theli and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove theliRemove theli Configurations and Data
To remove theli configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge theliRemove theli configuration, data, and all of its dependencies
We can use the following command to remove theli configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge theliDependencies
theli have the following dependencies:
- libc6
- libcfitsio9
- libgcc-s1
- libgomp1
- libgsl25
- libqt5core5a
- libqt5gui5
- libqt5printsupport5
- libqt5widgets5
- libraw20
- libstdc++6
- libtiff5
- libwcs7
References
Summary
In this tutorial we learn how to install theli package on Kali Linux using different package management tools: apt, apt-get and aptitude.