xmltrip command not found

In this troubleshooting guide we learn how to fix xmltrip command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

xmltrip: command not found

or when using sudo you get the following error message

sudo: xmltrip: command not found

Solutions to xmltrip: command not found

How To Fix xmltrip: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu xmltrip is provided by libxmlm-ocaml-dev package.

libxmlm-ocaml-dev is:

Xmlm allows the OCaml programmer to manipulate xml data. Its complexity is half-way between the easy xml-light module and a full parsing of xml data.

It is also very simple to upgrade existing code using xml-light in order to use xmlm.

This package contains all the development stuff you need to develop OCaml programs which use xmlm.

To fix this problem, we can install more using the command below.

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

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install libxmlm-ocaml-dev.

sudo apt -y install libxmlm-ocaml-dev

Or if you have aptitude installed you can use the following command.

sudo aptitude install libxmlm-ocaml-dev

Summary

In this tutorial we learn how to fix xmltrip command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.