How To Install haskell98-report on Kali Linux

In this tutorial we learn how to install haskell98-report on Kali Linux. haskell98-report is The Haskell 98 Language and Libraries Revised Report & addenda

Introduction

In this tutorial we learn how to install haskell98-report on Kali Linux.

What is haskell98-report

haskell98-report is:

Haskell is a non-strict, pure functional general-purpose programming language. This package contains its definition in HTML, PS and PDF formats. It is a revised version of “The Haskell 98 Report” and “The Haskell 98 Library Report”, fixing the bugs documented in “Errata for the Haskell 98 Language Report” (which is included).

It also contains the Foreign Function Interface (FFI) addendum and the Hierarchical Modules addendum in PS and PDF formats.

There are three methods to install haskell98-report 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 haskell98-report Using apt-get

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

sudo apt-get update

After updating apt database, We can install haskell98-report using apt-get by running the following command:

sudo apt-get -y install haskell98-report

Install haskell98-report Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install haskell98-report using apt by running the following command:

sudo apt -y install haskell98-report

Install haskell98-report 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 haskell98-report using aptitude by running the following command:

sudo aptitude -y install haskell98-report

How To Uninstall haskell98-report on Kali Linux

To uninstall only the haskell98-report package we can use the following command:

sudo apt-get remove haskell98-report

Uninstall haskell98-report And Its Dependencies

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

sudo apt-get -y autoremove haskell98-report

Remove haskell98-report Configurations and Data

To remove haskell98-report configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge haskell98-report

Remove haskell98-report configuration, data, and all of its dependencies

We can use the following command to remove haskell98-report configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge haskell98-report

Dependencies

haskell98-report have the following dependencies:

References

Summary

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