cppo command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cppo: command not found
or when using sudo you get the following error message
sudo: cppo: command not found
Solutions to cppo: command not found
How To Fix cppo: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cppo is provided by cppo package.
cppo is:
Cppo is an OCaml-friendly implementation of cpp, the C preprocessor. It can replace camlp4 for preprocessing OCaml files, using cpp style and syntax. It allows defining simple macros and file inclusion.
To fix this problem, we can install more using the command below.
sudo apt-get -y install cppo
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install cppo.
sudo apt -y install cppo
Or if you have aptitude installed you can use the following command.
sudo aptitude install cppo
Summary
In this tutorial we learn how to fix cppo command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.