exrmakepreview command not found

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

Introduction

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

exrmakepreview: command not found

or when using sudo you get the following error message

sudo: exrmakepreview: command not found

Solutions to exrmakepreview: command not found

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

In Ubuntu exrmakepreview is provided by openexr package.

openexr is:

OpenEXR is a high dynamic-range (HDR) image file format developed by Industrial Light & Magic for use in computer imaging applications.

OpenEXR’s features include: * Higher dynamic range and colour precision than existing 8- and 10-bit image file formats. * Support for the “half” 16-bit floating-point pixel format. * Multiple lossless image compression algorithms. Some of the included codecs can achieve 2:1 lossless compression ratios on images with film grain. * Extensibility. New compression codecs and image types can easily be added by extending the C++ classes included in the OpenEXR software distribution. New image attributes (strings, vectors, integers, etc.) can be added to OpenEXR image headers without affecting backward compatibility with existing OpenEXR applications.

This package contains the following tools: * exrheader, a utility for dumping header information. * exrstdattr, a utility for modifying OpenEXR standard attributes. * exrmaketiled, for generating tiled and rip/mipmapped images. * exrenvmap, for creating OpenEXR environment maps. * exrmakepreview, for creating preview images for OpenEXR files.

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

sudo apt-get -y install openexr

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

You can also use apt command to install openexr.

sudo apt -y install openexr

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

sudo aptitude install openexr

Summary

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