How To Install libghc-regex-tdfa-dev on Ubuntu 18.04

In this tutorial we learn how to install libghc-regex-tdfa-dev on Ubuntu 18.04. libghc-regex-tdfa-dev is Haskell library for a tagged DFA regex engine

Introduction

In this tutorial we learn how to install libghc-regex-tdfa-dev on Ubuntu 18.04.

What is libghc-regex-tdfa-dev

libghc-regex-tdfa-dev is:

A pure Haskell alternative to GHC’s Text.Regex module (with some enhancements). The Text.Regex module marshalls the data back and forth to c-arrays to call libc and this is far too slow (and strict).

This module parses regular expression Strings using a Parsec parser and creates an internal data structure (Text.Regex.Lazy.Pattern). This is then transformed a DFA table for matching against the input String or FastPackedString. The input string is consumed lazily, so it may be an arbitrarily long or infinite source.

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-regex-tdfa-dev on Ubuntu 18.04. 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-regex-tdfa-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-regex-tdfa-dev using apt-get by running the following command:

sudo apt-get -y install libghc-regex-tdfa-dev

Install libghc-regex-tdfa-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libghc-regex-tdfa-dev

Install libghc-regex-tdfa-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 Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

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

sudo aptitude -y install libghc-regex-tdfa-dev

How To Uninstall libghc-regex-tdfa-dev on Ubuntu 18.04

To uninstall only the libghc-regex-tdfa-dev package we can use the following command:

sudo apt-get remove libghc-regex-tdfa-dev

Uninstall libghc-regex-tdfa-dev And Its Dependencies

To uninstall libghc-regex-tdfa-dev and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove libghc-regex-tdfa-dev

Remove libghc-regex-tdfa-dev Configurations and Data

To remove libghc-regex-tdfa-dev configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libghc-regex-tdfa-dev

Remove libghc-regex-tdfa-dev configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libghc-regex-tdfa-dev

References

Summary

In this tutorial we learn how to install libghc-regex-tdfa-dev package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.