caml2html command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
caml2html: command not found
or when using sudo you get the following error message
sudo: caml2html: command not found
Solutions to caml2html: command not found
How To Fix caml2html: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu caml2html is provided by caml2html package.
caml2html is:
Caml2html provides a command-line executable which converts a set of OCaml source files into a HTML or LaTeX document with colored syntax. A library is also provided for building web-page generators that would color OCaml code appropriately.
This package contains the caml2html executable.
To fix this problem, we can install more using the command below.
sudo apt-get -y install caml2html
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install caml2html.
sudo apt -y install caml2html
Or if you have aptitude installed you can use the following command.
sudo aptitude install caml2html
Summary
In this tutorial we learn how to fix caml2html command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.