exempi command not found

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

Introduction

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

exempi: command not found

or when using sudo you get the following error message

sudo: exempi: command not found

Solutions to exempi: command not found

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

In Ubuntu exempi is provided by exempi package.

exempi is:

Exempi is a library to parse XMP metadata as defined by the specification.

XMP (Extensible Metadata Platform) facilitates embedding metadata in files using a subset of RDF. Most notably XMP supports embedding metadata in PDF and many image formats, though it is designed to support nearly any file type.

This package provides a command line tool to manipulate XMP metadata.

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

sudo apt-get -y install exempi

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

You can also use apt command to install exempi.

sudo apt -y install exempi

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

sudo aptitude install exempi

Summary

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