How To Install libghc-managed-prof on Kali Linux

In this tutorial we learn how to install libghc-managed-prof on Kali Linux. libghc-managed-prof is monad for managed values; profiling libraries

Introduction

In this tutorial we learn how to install libghc-managed-prof on Kali Linux.

What is libghc-managed-prof

libghc-managed-prof 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, compiled for profiling. See http://www.haskell.org/ for more information on Haskell.

There are three methods to install libghc-managed-prof on Kali Linux. 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-prof 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-prof using apt-get by running the following command:

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

Install libghc-managed-prof Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libghc-managed-prof

Install libghc-managed-prof Using aptitude

If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.

sudo aptitude update

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

sudo aptitude -y install libghc-managed-prof

How To Uninstall libghc-managed-prof on Kali Linux

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

sudo apt-get remove libghc-managed-prof

Uninstall libghc-managed-prof And Its Dependencies

To uninstall libghc-managed-prof and its dependencies that are no longer needed by Kali Linux, we can use the command below:

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

Remove libghc-managed-prof Configurations and Data

To remove libghc-managed-prof configuration and data from Kali Linux we can use the following command:

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

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

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

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

Dependencies

libghc-managed-prof have the following dependencies:

References

Summary

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