trueprint command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
trueprint: command not found
or when using sudo you get the following error message
sudo: trueprint: command not found
Solutions to trueprint: command not found
How To Fix trueprint: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu trueprint is provided by trueprint package.
trueprint is:
This program generates a pretty output of source codes in many programming languages. The result could be printed or written to a Postscript file.
The following programming languages are supported: * C * C++ * Java * Pascal * Perl * Pike * Sh (Shell) * Verilog
To fix this problem, we can install more using the command below.
sudo apt-get -y install trueprint
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install trueprint.
sudo apt -y install trueprint
Or if you have aptitude installed you can use the following command.
sudo aptitude install trueprint
Summary
In this tutorial we learn how to fix trueprint command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.