textdraw command not found

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

Introduction

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

textdraw: command not found

or when using sudo you get the following error message

sudo: textdraw: command not found

Solutions to textdraw: command not found

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

In Ubuntu textdraw is provided by textdraw package.

textdraw is:

Textdraw (td) is a small utility that allows do draw (ASCII-based) line-, rectangle-, ellipse- and text-objects with copy/paste/move features.

It completes existing console-based software to a ’textbased only office' and offers a simple and easy way to draw ascii graphics for documentations, presentations, mails and much more.

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

sudo apt-get -y install textdraw

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

You can also use apt command to install textdraw.

sudo apt -y install textdraw

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

sudo aptitude install textdraw

Summary

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