ocamlify command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ocamlify: command not found
or when using sudo you get the following error message
sudo: ocamlify: command not found
Solutions to ocamlify: command not found
How To Fix ocamlify: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ocamlify is provided by ocamlify package.
ocamlify is:
This program allows one to copy files inside OCaml code. It uses a first file that describes the other files that must be included and the type of OCaml variable it should create. It can also describe dependencies to other files, in order to generate .depends files for make.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ocamlify
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ocamlify.
sudo apt -y install ocamlify
Or if you have aptitude installed you can use the following command.
sudo aptitude install ocamlify
Summary
In this tutorial we learn how to fix ocamlify command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.