transcalc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
transcalc: command not found
or when using sudo you get the following error message
sudo: transcalc: command not found
Solutions to transcalc: command not found
How To Fix transcalc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu transcalc is provided by transcalc package.
transcalc is:
Transcalc is an analysis and synthesis tool for calculating the electrical and physical properties of different kinds of RF and microwave transmission lines.
For each type of transmission line, using dialog boxes, you can enter values for the various parameters, and either calculate its electrical properties (analyze), or use the given electrical requirements to synthesize physical parameters of the required transmission line.
Available transmission lines (this list will expand with subsequent releases): Microstrip, Rectangular Waveguide.
To fix this problem, we can install more using the command below.
sudo apt-get -y install transcalc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install transcalc.
sudo apt -y install transcalc
Or if you have aptitude installed you can use the following command.
sudo aptitude install transcalc
Summary
In this tutorial we learn how to fix transcalc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.