How To Install libghc-thyme-prof on Kali Linux

In this tutorial we learn how to install libghc-thyme-prof on Kali Linux. libghc-thyme-prof is faster time library; profiling libraries

Introduction

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

What is libghc-thyme-prof

libghc-thyme-prof is:

Thyme is a rewrite of the fine time library, with a particular focus on performance for applications that make heavy use of timestamps. For example, UTCTime is represented with ?s precision as an Int64, which gives a usable range from -290419-11-07 19:59:05.224192 UTC to 294135-11-26 04:00:54.775807 UTC in the future.

Conversions are provided as Iso’s from the lens package, while AdditiveGroup, VectorSpace and AffineSpace from vector-space allow for more principled operations instead of Num, Fractional & al.

Thyme uses strict and unpacked tuples throughout, e.g. YearMonthDay or WeekDate. Descriptive Int synonyms such as Year and DayOfMonth are also provided.

On platforms where Int is 64-bits wide, types with an Enum instance can be used as Keys for IntMap, preferably via the EnumMap wrapper provided by enummapset-th. In any case the Ord instances are much faster, if you must use Map.

Data.Thyme.Time is a drop-in compatibility module for existing code.

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

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

Install libghc-thyme-prof Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libghc-thyme-prof

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

sudo aptitude -y install libghc-thyme-prof

How To Uninstall libghc-thyme-prof on Kali Linux

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

sudo apt-get remove libghc-thyme-prof

Uninstall libghc-thyme-prof And Its Dependencies

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

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

Remove libghc-thyme-prof Configurations and Data

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

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

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

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

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

Dependencies

libghc-thyme-prof have the following dependencies:

References

Summary

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