ilur command not found

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

Introduction

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

ilur: command not found

or when using sudo you get the following error message

sudo: ilur: command not found

Solutions to ilur: command not found

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

In Ubuntu ilur is provided by libdevil1c2 package.

libdevil1c2 is:

Developer’s Image Library (DevIL) is a programmer’s toolkit which can load, save and convert a wide variety of image formats. It also offers basic manipulation and filtering capabilities.

DevIL presents a simple programming interface similar to OpenGL’s, which is easy for a developer to learn and use. Ultimate control of the images is left to the developer.

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

sudo apt-get -y install libdevil1c2

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

You can also use apt command to install libdevil1c2.

sudo apt -y install libdevil1c2

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

sudo aptitude install libdevil1c2

Summary

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