How To Install libhugs-x11-bundled on Debian 11

In this tutorial we learn how to install libhugs-x11-bundled on Debian 11. libhugs-x11-bundled is A binding to the X11 graphics library

Introduction

In this tutorial we learn how to install libhugs-x11-bundled on Debian 11.

What is libhugs-x11-bundled

libhugs-x11-bundled is:

A Haskell binding to the X11 graphics library.

The binding is a direct translation of the C binding; for documentation of these calls, refer to “The Xlib Programming Manual”, available online at http://tronche.com/gui/x/xlib/.

This is the version bundled with the interpreter.

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

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

sudo apt-get update

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

sudo apt-get -y install libhugs-x11-bundled

Install libhugs-x11-bundled Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libhugs-x11-bundled using apt by running the following command:

sudo apt -y install libhugs-x11-bundled

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

sudo aptitude -y install libhugs-x11-bundled

How To Uninstall libhugs-x11-bundled on Debian 11

To uninstall only the libhugs-x11-bundled package we can use the following command:

sudo apt-get remove libhugs-x11-bundled

Uninstall libhugs-x11-bundled And Its Dependencies

To uninstall libhugs-x11-bundled and its dependencies that are no longer needed by Debian 11, we can use the command below:

sudo apt-get -y autoremove libhugs-x11-bundled

Remove libhugs-x11-bundled Configurations and Data

To remove libhugs-x11-bundled configuration and data from Debian 11 we can use the following command:

sudo apt-get -y purge libhugs-x11-bundled

Remove libhugs-x11-bundled configuration, data, and all of its dependencies

We can use the following command to remove libhugs-x11-bundled configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libhugs-x11-bundled

Dependencies

libhugs-x11-bundled have the following dependencies:

References

Summary

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