aubioquiet command not found

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

Introduction

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

aubioquiet: command not found

or when using sudo you get the following error message

sudo: aubioquiet: command not found

Solutions to aubioquiet: command not found

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

In Ubuntu aubioquiet is provided by aubio-tools package.

aubio-tools is:

aubio gathers a set of functions for audio signal segmentation and labelling. The library contains a phase vocoder, onset and pitch detection functions, a beat tracking algorithm and other sound processing utilities.

This package provides command line tools to run the different algorithms.

To fix this problem, we can install more using the command below.

sudo apt-get -y install aubio-tools

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install aubio-tools.

sudo apt -y install aubio-tools

Or if you have aptitude installed you can use the following command.

sudo aptitude install aubio-tools

Summary

In this tutorial we learn how to fix aubioquiet command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.