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