gmp3info command not found

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

Introduction

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

gmp3info: command not found

or when using sudo you get the following error message

sudo: gmp3info: command not found

Solutions to gmp3info: command not found

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

In Ubuntu gmp3info is provided by mp3info-gtk package.

mp3info-gtk is:

MP3Info can display ID3 tag information as well as various technical aspects of an MP3 file including playing time, bit-rate, sampling frequency and other attributes in a pre-defined or user-specifiable output format.

This package installs GTK+ version of mp3info. If you prefer command line or curses interface you should use mp3info package.

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

sudo apt-get -y install mp3info-gtk

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

You can also use apt command to install mp3info-gtk.

sudo apt -y install mp3info-gtk

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

sudo aptitude install mp3info-gtk

Summary

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