How To Install libagrep-ocaml-dev on Ubuntu 18.04

In this tutorial we learn how to install libagrep-ocaml-dev on Ubuntu 18.04. libagrep-ocaml-dev is Wu-Manber algorithm for string searching with errors

Introduction

In this tutorial we learn how to install libagrep-ocaml-dev on Ubuntu 18.04.

What is libagrep-ocaml-dev

libagrep-ocaml-dev is:

This OCaml library implements the Wu-Manber algorithm for string searching with errors, popularized by the “agrep” Unix command and the “glimpse” file indexing tool. It was developed as part of a search engine for a largish MP3 collection; the “with error” searching comes handy for those who can’t spell Liszt or Shostakovitch.

Given a search pattern and a string, this algorithm determines whether the string contains a substring that matches the pattern up to a parameterizable number N of “errors”. An “error” is either a substitution (replace a character of the string with another character), a deletion (remove a character) or an insertion (add a character to the string). In more scientific terms, the number of errors is the Levenshtein edit distance between the pattern and the matched substring.

The search patterns are roughly those of the Unix shell, including one-character wildcard (?), character classes ([0-9]) and multi-character wildcard (*). In addition, conjunction (&) and alternative (|) are supported. General regular expressions are not supported, however.

This package contains all the development stuff you need to use the agrep OCaml library in your programs.

There are three methods to install libagrep-ocaml-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 libagrep-ocaml-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 libagrep-ocaml-dev using apt-get by running the following command:

sudo apt-get -y install libagrep-ocaml-dev

Install libagrep-ocaml-dev Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libagrep-ocaml-dev using apt by running the following command:

sudo apt -y install libagrep-ocaml-dev

Install libagrep-ocaml-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 libagrep-ocaml-dev using aptitude by running the following command:

sudo aptitude -y install libagrep-ocaml-dev

How To Uninstall libagrep-ocaml-dev on Ubuntu 18.04

To uninstall only the libagrep-ocaml-dev package we can use the following command:

sudo apt-get remove libagrep-ocaml-dev

Uninstall libagrep-ocaml-dev And Its Dependencies

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

sudo apt-get -y autoremove libagrep-ocaml-dev

Remove libagrep-ocaml-dev Configurations and Data

To remove libagrep-ocaml-dev configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libagrep-ocaml-dev

Remove libagrep-ocaml-dev configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libagrep-ocaml-dev

References

Summary

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