eyeD3 command not found

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

Introduction

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

eyeD3: command not found

or when using sudo you get the following error message

sudo: eyeD3: command not found

Solutions to eyeD3: command not found

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

In Ubuntu eyeD3 is provided by eyed3 package.

eyed3 is:

A command-line editor to add/edit/remove ID3-tags on mp3 files. It supports version 1.0,1.1,2.3 and 2.4 of the ID3 standard. Additionally it displays several information about the file such as length and bitrate from an MP3 file.

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

sudo apt-get -y install eyed3

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

You can also use apt command to install eyed3.

sudo apt -y install eyed3

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

sudo aptitude install eyed3

Summary

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