gnucap command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gnucap: command not found
or when using sudo you get the following error message
sudo: gnucap: command not found
Solutions to gnucap: command not found
How To Fix gnucap: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gnucap is provided by gnucap package.
gnucap is:
Gnucap is a general purpose circuit simulator. It performs nonlinear dc and transient analyses, Fourier analysis, and ac analysis linearized at an operating point. It is fully interactive and command driven. It can also be run in batch mode or as a server.
This package contains a main executable and gnucap-modelgen.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gnucap
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gnucap.
sudo apt -y install gnucap
Or if you have aptitude installed you can use the following command.
sudo aptitude install gnucap
Summary
In this tutorial we learn how to fix gnucap command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.