How To Install libghc-managed-doc on Kali Linux
Introduction
In this tutorial we learn how to install libghc-managed-doc on Kali Linux.
What is libghc-managed-doc
libghc-managed-doc 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 the documentation for 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-doc 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-doc Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libghc-managed-doc using apt-get by running the following command:
sudo apt-get -y install libghc-managed-docInstall libghc-managed-doc Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libghc-managed-doc using apt by running the following command:
sudo apt -y install libghc-managed-docInstall libghc-managed-doc 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 updateAfter updating apt database, We can install libghc-managed-doc using aptitude by running the following command:
sudo aptitude -y install libghc-managed-docHow To Uninstall libghc-managed-doc on Kali Linux
To uninstall only the libghc-managed-doc package we can use the following command:
sudo apt-get remove libghc-managed-docUninstall libghc-managed-doc And Its Dependencies
To uninstall libghc-managed-doc and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libghc-managed-docRemove libghc-managed-doc Configurations and Data
To remove libghc-managed-doc configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libghc-managed-docRemove libghc-managed-doc configuration, data, and all of its dependencies
We can use the following command to remove libghc-managed-doc configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libghc-managed-docDependencies
libghc-managed-doc have the following dependencies:
References
Summary
In this tutorial we learn how to install libghc-managed-doc package on Kali Linux using different package management tools: apt, apt-get and aptitude.