sweep command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sweep: command not found
or when using sudo you get the following error message
sudo: sweep: command not found
Solutions to sweep: command not found
How To Fix sweep: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sweep is provided by sweep package.
sweep is:
Sweep is an audio editor and live playback tool. It supports many music and voice formats including WAV, AIFF, Ogg Vorbis, Speex and MP3, with multichannel editing and LADSPA effects plugins.
To fix this problem, we can install more using the command below.
sudo apt-get -y install sweep
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install sweep.
sudo apt -y install sweep
Or if you have aptitude installed you can use the following command.
sudo aptitude install sweep
Summary
In this tutorial we learn how to fix sweep command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.