rgbpaint command not found

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

Introduction

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

rgbpaint: command not found

or when using sudo you get the following error message

sudo: rgbpaint: command not found

Solutions to rgbpaint: command not found

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

In Ubuntu rgbpaint is provided by rgbpaint package.

rgbpaint is:

This package provides the simplified painting program rgbPaint, a spin-off from mtPaint by the same authors. Light on dependencies, it can edit and save images in ICO, JPEG, or PNG format only, though it can also read GIF, PCX, SVG, TGA, and TIFF formats.

The user interface is intentionally kept simple, without drop-down menus. Ten brushes are provided, and a palette of twenty colors, each of which can be replaced from a color blender. The available actions are painting, filling, and area selection. The program can also start by taking a screen snapshot to use as the initial image.

Originally aimed at the OLPC initiative, rgbPaint works well with the Sugar desktop environment - especially with a graphics tablet; even young children can quickly master it to produce true brushwork!

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

sudo apt-get -y install rgbpaint

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

You can also use apt command to install rgbpaint.

sudo apt -y install rgbpaint

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

sudo aptitude install rgbpaint

Summary

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