gmic command not found

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

Introduction

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

gmic: command not found

or when using sudo you get the following error message

sudo: gmic: command not found

Solutions to gmic: command not found

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

In Ubuntu gmic is provided by gmic package.

gmic is:

G’MIC is an open and full-featured framework for image processing, providing several different user interfaces to convert/manipulate/filter/visualize generic image datasets, from 1d scalar signals to 3d+t sequences of multi-spectral volumetric images.

This package contains the stand-alone gmic binary.

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

sudo apt-get -y install gmic

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

You can also use apt command to install gmic.

sudo apt -y install gmic

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

sudo aptitude install gmic

Summary

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