How To Install libghc-kvitable-dev on Debian 12

Learn how to install libghc-kvitable-dev on Debian 12 with this tutorial. libghc-kvitable-dev is Key/Value Indexed Table container and formatting library

Introduction

In this tutorial we learn how to install libghc-kvitable-dev on Debian 12.

What is libghc-kvitable-dev

libghc-kvitable-dev is:

Allows creation of a table from a set of of Key+Value Indices. This differs from the standard ‘Map’ structure in that the ‘Map’ simply indexes by value but the KVI table indexes by a heterogeneous list of keys along with their associated values. This effectively creates an N-dimensional table, where @N=Product(Count(Values[key]))@. The table contents can be sparse.

This library also provides the ability to format multi-dimensional data in a table presentation. The table is automatically formatted and can be output in a number of different styles (ascii, html, etc.)

Multi-dimensional data is more difficult to represent than simple two-dimensional data; this package provides the ability to select which dimensions should be represented as sub-rows and which dimensions should be represented as sub-columns. See the README for examples

This package provides a library for the Haskell programming language. See http://www.haskell.org/ for more information on Haskell.

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

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

sudo apt-get update

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

sudo apt-get -y install libghc-kvitable-dev

Install libghc-kvitable-dev Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libghc-kvitable-dev using apt by running the following command:

sudo apt -y install libghc-kvitable-dev

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

sudo aptitude -y install libghc-kvitable-dev

How To Uninstall libghc-kvitable-dev on Debian 12

To uninstall only the libghc-kvitable-dev package we can use the following command:

sudo apt-get remove libghc-kvitable-dev

Uninstall libghc-kvitable-dev And Its Dependencies

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

sudo apt-get -y autoremove libghc-kvitable-dev

Remove libghc-kvitable-dev Configurations and Data

To remove libghc-kvitable-dev configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge libghc-kvitable-dev

Remove libghc-kvitable-dev configuration, data, and all of its dependencies

We can use the following command to remove libghc-kvitable-dev configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libghc-kvitable-dev

Dependencies

libghc-kvitable-dev have the following dependencies:

References

Summary

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