How To Install libghc-th-desugar-doc on Kali Linux

In this tutorial we learn how to install libghc-th-desugar-doc on Kali Linux. libghc-th-desugar-doc is functions to desugar Template Haskell; documentation

Introduction

In this tutorial we learn how to install libghc-th-desugar-doc on Kali Linux.

What is libghc-th-desugar-doc

libghc-th-desugar-doc is:

This package provides the Language.Haskell.TH.Desugar module, which desugars Template Haskell’s rich encoding of Haskell syntax into a simpler encoding. This desugaring discards surface syntax information (such as the use of infix operators) but retains the original meaning of the TH code. The intended use of this package is as a preprocessor for more advanced code manipulation tools. Note that the input to any of the ds… functions should be produced from a TH quote, using the syntax [| … |]. If the input to these functions is a hand-coded TH syntax tree, the results may be unpredictable. In particular, it is likely that promoted datatypes will not work as expected.

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-th-desugar-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-th-desugar-doc 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-th-desugar-doc using apt-get by running the following command:

sudo apt-get -y install libghc-th-desugar-doc

Install libghc-th-desugar-doc Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libghc-th-desugar-doc using apt by running the following command:

sudo apt -y install libghc-th-desugar-doc

Install libghc-th-desugar-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 update

After updating apt database, We can install libghc-th-desugar-doc using aptitude by running the following command:

sudo aptitude -y install libghc-th-desugar-doc

How To Uninstall libghc-th-desugar-doc on Kali Linux

To uninstall only the libghc-th-desugar-doc package we can use the following command:

sudo apt-get remove libghc-th-desugar-doc

Uninstall libghc-th-desugar-doc And Its Dependencies

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

sudo apt-get -y autoremove libghc-th-desugar-doc

Remove libghc-th-desugar-doc Configurations and Data

To remove libghc-th-desugar-doc configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libghc-th-desugar-doc

Remove libghc-th-desugar-doc configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libghc-th-desugar-doc

Dependencies

libghc-th-desugar-doc have the following dependencies:

References

Summary

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