tpp command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tpp: command not found
or when using sudo you get the following error message
sudo: tpp: command not found
Solutions to tpp: command not found
How To Fix tpp: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tpp is provided by tpp package.
tpp is:
Tpp stands for text presentation program and is an ncurses-based presentation tool. The presentation can be written with your favorite editor in a simple description format and then shown on any text terminal that is supported by ncurses - ranging from an old VT100 to the Linux framebuffer to an xterm.
It supports color, LaTeX output of presentation, sliding in text, a command prompt and additional cool features.
The package also installs syntax highlighting modes/add-ons for emacs and vim. To enable the vim add-on, the package vim-addon-manager needs to be installed, too.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tpp
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tpp.
sudo apt -y install tpp
Or if you have aptitude installed you can use the following command.
sudo aptitude install tpp
Summary
In this tutorial we learn how to fix tpp command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.