How To Install libghc-inspection-testing-dev on Kali Linux
Introduction
In this tutorial we learn how to install libghc-inspection-testing-dev
on Kali Linux.
What is libghc-inspection-testing-dev
libghc-inspection-testing-dev is:
Some carefully crafted libraries make promises to their users beyond functionality and performance.
Examples are: Fusion libraries promise intermediate data structures to be eliminated. Generic programming libraries promise that the generic implementation is identical to the hand-written one. Some libraries may promise allocation-free or branch-free code.
Conventionally, the modus operandi in all these cases is that the library author manually inspects the (intermediate or final) code produced by the compiler. This is not only tedious, but makes it very likely that some change, either in the library itself or the surrounding eco-system, breaks the library??s promised without anyone noticing.
This package provides a disciplined way of specifying such properties, and have them checked by the compiler. This way, this checking can be part of the ususal development cycle and regressions caught early.
This package provides a library for the Haskell programming language. See http://www.haskell.org/ for more information on Haskell.
There are three methods to install libghc-inspection-testing-dev
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-inspection-testing-dev 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-inspection-testing-dev
using apt-get
by running the following command:
sudo apt-get -y install libghc-inspection-testing-dev
Install libghc-inspection-testing-dev Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libghc-inspection-testing-dev
using apt
by running the following command:
sudo apt -y install libghc-inspection-testing-dev
Install libghc-inspection-testing-dev 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-inspection-testing-dev
using aptitude
by running the following command:
sudo aptitude -y install libghc-inspection-testing-dev
How To Uninstall libghc-inspection-testing-dev on Kali Linux
To uninstall only the libghc-inspection-testing-dev
package we can use the following command:
sudo apt-get remove libghc-inspection-testing-dev
Uninstall libghc-inspection-testing-dev And Its Dependencies
To uninstall libghc-inspection-testing-dev
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libghc-inspection-testing-dev
Remove libghc-inspection-testing-dev Configurations and Data
To remove libghc-inspection-testing-dev
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libghc-inspection-testing-dev
Remove libghc-inspection-testing-dev configuration, data, and all of its dependencies
We can use the following command to remove libghc-inspection-testing-dev
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libghc-inspection-testing-dev
Dependencies
libghc-inspection-testing-dev have the following dependencies:
- libghc-base-dev-4.13.0.0-2f220
- libghc-containers-dev-0.6.2.1-ab1cf
- libghc-ghc-dev-8.8.4-bc988
- libghc-mtl-dev-2.2.2-7208c
- libghc-template-haskell-dev-2.15.0.0-80f0d
- libghc-transformers-dev-0.5.6.2-59c2c
- libc6
- libgmp10
- libtinfo6
References
Summary
In this tutorial we learn how to install libghc-inspection-testing-dev
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.