How To Install libgtk3-simplelist-perl on Debian 11

In this tutorial we learn how to install libgtk3-simplelist-perl on Debian 11. libgtk3-simplelist-perl is Perl simple interface to GTK+ 3s complex MVC list widget

Introduction

In this tutorial we learn how to install libgtk3-simplelist-perl on Debian 11.

What is libgtk3-simplelist-perl

libgtk3-simplelist-perl is:

Gtk3 has a powerful, but complex MVC (Model, View, Controller) system used to implement list and tree widgets. Gtk3::SimpleList automates the complex setup work and allows you to treat the list model as a more natural list of lists structure.

After creating a new Gtk3::SimpleList object with the desired columns you may set the list data with a simple Perl array assignment. Rows may be added or deleted with all of the normal array operations. You can treat the data member of the list simplelist object as an array reference, and manipulate the list data with perl’s normal array operators.

A mechanism has also been put into place allowing columns to be Perl scalars. The scalar is converted to text through Perl’s normal mechanisms and then displayed in the list. This same mechanism can be expanded by defining arbitrary new column types before calling the new function.

There are three methods to install libgtk3-simplelist-perl on Debian 11. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libgtk3-simplelist-perl Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install libgtk3-simplelist-perl

Install libgtk3-simplelist-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libgtk3-simplelist-perl using apt by running the following command:

sudo apt -y install libgtk3-simplelist-perl

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

sudo aptitude -y install libgtk3-simplelist-perl

How To Uninstall libgtk3-simplelist-perl on Debian 11

To uninstall only the libgtk3-simplelist-perl package we can use the following command:

sudo apt-get remove libgtk3-simplelist-perl

Uninstall libgtk3-simplelist-perl And Its Dependencies

To uninstall libgtk3-simplelist-perl and its dependencies that are no longer needed by Debian 11, we can use the command below:

sudo apt-get -y autoremove libgtk3-simplelist-perl

Remove libgtk3-simplelist-perl Configurations and Data

To remove libgtk3-simplelist-perl configuration and data from Debian 11 we can use the following command:

sudo apt-get -y purge libgtk3-simplelist-perl

Remove libgtk3-simplelist-perl configuration, data, and all of its dependencies

We can use the following command to remove libgtk3-simplelist-perl configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libgtk3-simplelist-perl

Dependencies

libgtk3-simplelist-perl have the following dependencies:

References

Summary

In this tutorial we learn how to install libgtk3-simplelist-perl package on Debian 11 using different package management tools: apt, apt-get and aptitude.