tform command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tform: command not found
or when using sudo you get the following error message
sudo: tform: command not found
Solutions to tform: command not found
How To Fix tform: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tform is provided by form package.
form is:
This is a Symbolic Manipulation System. It reads symbolic expressions from files and executes symbolic/algebraic transformations upon them. The answers are returned in a textual mathematical representation. As its landmark feature, the size of the considered expressions in FORM is only limited by the available disk space and not by the available RAM.
To fix this problem, we can install more using the command below.
sudo apt-get -y install form
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install form.
sudo apt -y install form
Or if you have aptitude installed you can use the following command.
sudo aptitude install form
Summary
In this tutorial we learn how to fix tform command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.