vips command not found

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

Introduction

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

vips: command not found

or when using sudo you get the following error message

sudo: vips: command not found

Solutions to vips: command not found

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

In Ubuntu vips is provided by libvips-tools package.

libvips-tools is:

VIPS is an image processing system designed with efficiency in mind. It is good with large images (ones that larger than the amount of RAM in your machine), and for working with colour. It can perform many image manipulation tasks much faster than other packages such as ImageMagick and the GIMP and includes some special features such as creating single “mosaic” images from multiple parts.

VIPS consists of two main components: an image processing library with some command-line tools and a spreadsheet-like graphical user interface. The graphical interface is available in the nip2 package.

This package includes several command-line utilities that make it possible to use some vips functionality from shell scripts or the command line.

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

sudo apt-get -y install libvips-tools

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

You can also use apt command to install libvips-tools.

sudo apt -y install libvips-tools

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

sudo aptitude install libvips-tools

Summary

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