findimagedupes command not found

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

Introduction

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

findimagedupes: command not found

or when using sudo you get the following error message

sudo: findimagedupes: command not found

Solutions to findimagedupes: command not found

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

In Ubuntu findimagedupes is provided by findimagedupes package.

findimagedupes is:

findimagedupes is a commandline utility which performs a rough “visual diff” to two images. This allows you to compare two images or a whole tree of images and determine if any are similar or identical. On common image types, findimagedupes seems to be around 98% accurate.

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

sudo apt-get -y install findimagedupes

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

You can also use apt command to install findimagedupes.

sudo apt -y install findimagedupes

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

sudo aptitude install findimagedupes

Summary

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