How To Install cumin on Debian 12

Learn how to install cumin on Debian 12 with this tutorial. cumin is Automation and orchestration framework written in Python

Introduction

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

What is cumin

cumin is:

Cumin provides a flexible and scalable automation framework to execute multiple commands on multiple targets in parallel.

It allows one to easily perform complex selections of hosts through a user-friendly query language which can interface with different backend modules.

The transport layer can also be selected, providing multiple execution strategies.

It can be used both via its command line interface (CLI) and as a Python library.

There are three methods to install cumin 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 cumin Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

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

sudo apt-get -y install cumin

Install cumin Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install cumin

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

sudo aptitude -y install cumin

How To Uninstall cumin on Debian 12

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

sudo apt-get remove cumin

Uninstall cumin And Its Dependencies

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

sudo apt-get -y autoremove cumin

Remove cumin Configurations and Data

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

sudo apt-get -y purge cumin

Remove cumin configuration, data, and all of its dependencies

We can use the following command to remove cumin configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge cumin

Dependencies

cumin have the following dependencies:

References

Summary

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