How To Install theli on Debian 12

Learn how to install theli on Debian 12 with this tutorial. theli is Astronomical image data reduction pipeline

Introduction

In this tutorial we learn how to install theli on Debian 12.

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 Debian 12. 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 update

After updating apt database, We can install theli using apt-get by running the following command:

sudo apt-get -y install theli

Install theli Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install theli using apt by running the following command:

sudo apt -y install theli

Install theli 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 theli using aptitude by running the following command:

sudo aptitude -y install theli

How To Uninstall theli on Debian 12

To uninstall only the theli package we can use the following command:

sudo apt-get remove theli

Uninstall theli And Its Dependencies

To uninstall theli and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove theli

Remove theli Configurations and Data

To remove theli configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge theli

Remove 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 theli

Dependencies

theli have the following dependencies:

References

Summary

In this tutorial we learn how to install theli package on Debian 12 using different package management tools: apt, apt-get and aptitude.