FaustWorks command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
FaustWorks: command not found
or when using sudo you get the following error message
sudo: FaustWorks: command not found
Solutions to FaustWorks: command not found
How To Fix FaustWorks: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu FaustWorks is provided by faustworks package.
faustworks is:
FaustWorks is an IDE (Integrated Development Environment) for the Faust dsp programming language. It relies on scripts to generate binaries for various audio targets. These scripts are located in /usr/share/FaustWorks/scripts.lin/
To fix this problem, we can install more using the command below.
sudo apt-get -y install faustworks
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install faustworks.
sudo apt -y install faustworks
Or if you have aptitude installed you can use the following command.
sudo aptitude install faustworks
Summary
In this tutorial we learn how to fix FaustWorks command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.