wildmidi command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
wildmidi: command not found
or when using sudo you get the following error message
sudo: wildmidi: command not found
Solutions to wildmidi: command not found
How To Fix wildmidi: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu wildmidi is provided by wildmidi package.
wildmidi is:
Minimal MIDI player implementation based on the wildmidi library that can either dump to WAV or playback over ALSA. It is intended to demonstrate the features of libWildMidi, including: reberb, logarithmic volume and high-quality linear or gauss resampling.
To fix this problem, we can install more using the command below.
sudo apt-get -y install wildmidi
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install wildmidi.
sudo apt -y install wildmidi
Or if you have aptitude installed you can use the following command.
sudo aptitude install wildmidi
Summary
In this tutorial we learn how to fix wildmidi command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.