How To Install libghc-managed-dev on Debian 12

Learn how to install libghc-managed-dev on Debian 12 with this tutorial. libghc-managed-dev is monad for managed values

Introduction

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

What is libghc-managed-dev

libghc-managed-dev is:

In Haskell you very often acquire values using the with… idiom using functions of type (a -> IO r) -> IO r. This idiom forms a Monad, which is a special case of the ContT monad (from transformers) or the Codensity monad (from kan-extensions). The main purpose behind this package is to provide a restricted form of these monads specialized to this unusually common case.

The reason this package defines a specialized version of these types is to:

  • be more beginner-friendly,
  • simplify inferred types and error messages, and:
  • provide some additional type class instances that would otherwise be orphan instances

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-managed-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-managed-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-managed-dev using apt-get by running the following command:

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

Install libghc-managed-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libghc-managed-dev

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

sudo aptitude -y install libghc-managed-dev

How To Uninstall libghc-managed-dev on Debian 12

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

sudo apt-get remove libghc-managed-dev

Uninstall libghc-managed-dev And Its Dependencies

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

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

Remove libghc-managed-dev Configurations and Data

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

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

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

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

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

Dependencies

libghc-managed-dev have the following dependencies:

References

Summary

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