drawing command not found

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

Introduction

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

drawing: command not found

or when using sudo you get the following error message

sudo: drawing: command not found

Solutions to drawing: command not found

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

In Ubuntu drawing is provided by drawing package.

drawing is:

Drawing is a simple image editor similar to MS Paint and designed for the GNOME desktop environment. It includes a set of image manipulation tools for every day basic image editing needs.

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

sudo apt-get -y install drawing

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

You can also use apt command to install drawing.

sudo apt -y install drawing

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

sudo aptitude install drawing

Summary

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