How To Install ocaml-book-en on Ubuntu 18.04

In this tutorial we learn how to install ocaml-book-en on Ubuntu 18.04. ocaml-book-en is English book

Introduction

In this tutorial we learn how to install ocaml-book-en on Ubuntu 18.04.

What is ocaml-book-en

ocaml-book-en is:

This is the English translation of the O’Reilly’s OCaml French book “Developpement d’applications avec Objective Caml” that can be found in the ocaml-book-fr package.

This package contains both the HTML and PDF version of the book.

There are three methods to install ocaml-book-en 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 ocaml-book-en Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install ocaml-book-en using apt-get by running the following command:

sudo apt-get -y install ocaml-book-en

Install ocaml-book-en Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install ocaml-book-en

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

sudo aptitude -y install ocaml-book-en

How To Uninstall ocaml-book-en on Ubuntu 18.04

To uninstall only the ocaml-book-en package we can use the following command:

sudo apt-get remove ocaml-book-en

Uninstall ocaml-book-en And Its Dependencies

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

sudo apt-get -y autoremove ocaml-book-en

Remove ocaml-book-en Configurations and Data

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

sudo apt-get -y purge ocaml-book-en

Remove ocaml-book-en configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge ocaml-book-en

References

Summary

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