How To Install libghc-tasty-discover-dev on Debian 12

Learn how to install libghc-tasty-discover-dev on Debian 12 with this tutorial. libghc-tasty-discover-dev is Test discovery for the tasty framework.

Introduction

In this tutorial we learn how to install libghc-tasty-discover-dev on Debian 12.

What is libghc-tasty-discover-dev

libghc-tasty-discover-dev is:

Automatic test discovery and runner for the tasty framework. Prefix your test case names and tasty-discover will discover, collect and run them. All popular test libraries are covered. Configure once and then just write your tests. Avoid forgetting to add test modules to your Cabal/Hpack files. Tasty ingredients are included along with various configuration options for different use cases.

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-tasty-discover-dev on Debian 12. 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-tasty-discover-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-tasty-discover-dev using apt-get by running the following command:

sudo apt-get -y install libghc-tasty-discover-dev

Install libghc-tasty-discover-dev Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libghc-tasty-discover-dev using apt by running the following command:

sudo apt -y install libghc-tasty-discover-dev

Install libghc-tasty-discover-dev Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libghc-tasty-discover-dev using aptitude by running the following command:

sudo aptitude -y install libghc-tasty-discover-dev

How To Uninstall libghc-tasty-discover-dev on Debian 12

To uninstall only the libghc-tasty-discover-dev package we can use the following command:

sudo apt-get remove libghc-tasty-discover-dev

Uninstall libghc-tasty-discover-dev And Its Dependencies

To uninstall libghc-tasty-discover-dev and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove libghc-tasty-discover-dev

Remove libghc-tasty-discover-dev Configurations and Data

To remove libghc-tasty-discover-dev configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge libghc-tasty-discover-dev

Remove libghc-tasty-discover-dev configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libghc-tasty-discover-dev

Dependencies

libghc-tasty-discover-dev have the following dependencies:

References

Summary

In this tutorial we learn how to install libghc-tasty-discover-dev package on Debian 12 using different package management tools: apt, apt-get and aptitude.