tuxpaint command not found

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

Introduction

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

tuxpaint: command not found

or when using sudo you get the following error message

sudo: tuxpaint: command not found

Solutions to tuxpaint: command not found

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

In Ubuntu tuxpaint is provided by tuxpaint package.

tuxpaint is:

Tux Paint is meant to be a simple drawing program for young children. It is not meant as a general-purpose drawing tool. It IS meant to be fun and easy to use. Sound effects and a cartoon character help let the user know what’s going on, and keeps them entertained.

Tux Paint is extensible. Brushes and “rubber stamp” shapes can be dropped in and pulled out. For example, a teacher can drop in a collection of animal shapes and ask their students to draw an ecosystem. Each shape can have a sound which is played, and textual facts which are displayed, when the child selects the shape.

There is no direct access to the computer’s underlying intricacies. The current image is kept when the program quits, and reappears when it is restarted. Saving images requires no need to create filenames or use the keyboard. Opening an image is done by selecting it from a collection of thumbnails.

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

sudo apt-get -y install tuxpaint

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

You can also use apt command to install tuxpaint.

sudo apt -y install tuxpaint

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

sudo aptitude install tuxpaint

Summary

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