How To Install libghc-tagsoup-prof on Ubuntu 18.04

In this tutorial we learn how to install libghc-tagsoup-prof on Ubuntu 18.04. libghc-tagsoup-prof is Profiling support for TagSoup Haskell library

Introduction

In this tutorial we learn how to install libghc-tagsoup-prof on Ubuntu 18.04.

What is libghc-tagsoup-prof

libghc-tagsoup-prof is:

TagSoup extracts information out of unstructured HTML code, sometimes known as tag soup. TagSoup does not require well-formed or standards-compliant HTML, or HTML that renders correctly in any particular rendering engine. TagSoup transforms HTML into a list of open tags with attributes, close tags, and text, but makes no attempt to group these together into any kind of structure.

This package contains the profiling support for the TagSoup library.

There are three methods to install libghc-tagsoup-prof 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-tagsoup-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-tagsoup-prof using apt-get by running the following command:

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

Install libghc-tagsoup-prof Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libghc-tagsoup-prof

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

sudo aptitude -y install libghc-tagsoup-prof

How To Uninstall libghc-tagsoup-prof on Ubuntu 18.04

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

sudo apt-get remove libghc-tagsoup-prof

Uninstall libghc-tagsoup-prof And Its Dependencies

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

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

Remove libghc-tagsoup-prof Configurations and Data

To remove libghc-tagsoup-prof configuration and data from Ubuntu 18.04 we can use the following command:

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

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

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

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

References

Summary

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