faust2sigviewer command not found

In this troubleshooting guide we learn how to fix faust2sigviewer command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

faust2sigviewer: command not found

or when using sudo you get the following error message

sudo: faust2sigviewer: command not found

Solutions to faust2sigviewer: command not found

How To Fix faust2sigviewer: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu faust2sigviewer 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 faust2sigviewer command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.