How To Install libelementary-bin on Debian 12

Learn how to install libelementary-bin on Debian 12 with this tutorial. libelementary-bin is EFL widget set - helper programs

Introduction

In this tutorial we learn how to install libelementary-bin on Debian 12.

What is libelementary-bin

libelementary-bin is:

Elementary is a widget set based on the Enlightenment Foundation Libraries, primarily aimed at creating graphical user interfaces for mobile and embedded devices.

This is part of the Enlightenment Foundation Libraries (EFL).

This package contains the elementary_config program and tools to assist in the development & debugging of elementary programs.

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

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

sudo apt-get update

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

sudo apt-get -y install libelementary-bin

Install libelementary-bin Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libelementary-bin

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

sudo aptitude -y install libelementary-bin

How To Uninstall libelementary-bin on Debian 12

To uninstall only the libelementary-bin package we can use the following command:

sudo apt-get remove libelementary-bin

Uninstall libelementary-bin And Its Dependencies

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

sudo apt-get -y autoremove libelementary-bin

Remove libelementary-bin Configurations and Data

To remove libelementary-bin configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge libelementary-bin

Remove libelementary-bin configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libelementary-bin

Dependencies

libelementary-bin have the following dependencies:

References

Summary

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