faust2mathdoc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
faust2mathdoc: command not found
or when using sudo you get the following error message
sudo: faust2mathdoc: command not found
Solutions to faust2mathdoc: command not found
How To Fix faust2mathdoc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu faust2mathdoc is provided by faust package.
faust is:
Faust is a functional programming language specifically designed for realtime audio applications and plugins. The syntax of the language is block diagram oriented. The faust compiler translate signal processing specifications into optimized C++ code for signal processing applications.
The generated code can be wrapped into an ‘architecture file’ in order to create for example a standalone jack/gtk application. Several architecture file are provided and additional ones are fairly easy to add.
To fix this problem, we can install more using the command below.
sudo apt-get -y install faust
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install faust.
sudo apt -y install faust
Or if you have aptitude installed you can use the following command.
sudo aptitude install faust
Summary
In this tutorial we learn how to fix faust2mathdoc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.