taglib-extras-config command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
taglib-extras-config: command not found
or when using sudo you get the following error message
sudo: taglib-extras-config: command not found
Solutions to taglib-extras-config: command not found
How To Fix taglib-extras-config: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu taglib-extras-config is provided by libtag-extras-dev package.
libtag-extras-dev is:
This package contains development files needed to build applications using TagLib extras library. This library implements reading and editing tags of a couple extra media file formats which are not supported by the core TagLib Audio Meta-Data Library (taglib). Currently supported file formats are Audible and RealMedia.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libtag-extras-dev
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libtag-extras-dev.
sudo apt -y install libtag-extras-dev
Or if you have aptitude installed you can use the following command.
sudo aptitude install libtag-extras-dev
Summary
In this tutorial we learn how to fix taglib-extras-config command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.