mp3wrap command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
mp3wrap: command not found
or when using sudo you get the following error message
sudo: mp3wrap: command not found
Solutions to mp3wrap: command not found
How To Fix mp3wrap: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu mp3wrap is provided by mp3wrap package.
mp3wrap is:
Command-line utility that wraps multiple MP3 files into a single, playable MP3, without losing filenames or ID3 information, and without reencoding. Also supports archiving non-audio data such as playlists, info files, and cover images inside the MP3. These files can be unpacked later (using mp3splt, e.g.); ordinary MP3 decoders can play the entire audio stream as one long track.
This is a free, independent alternative to AlbumWrap: http://www.infamus.com/albumwrap/
To fix this problem, we can install more using the command below.
sudo apt-get -y install mp3wrap
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install mp3wrap.
sudo apt -y install mp3wrap
Or if you have aptitude installed you can use the following command.
sudo aptitude install mp3wrap
Summary
In this tutorial we learn how to fix mp3wrap command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.