enscribe command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
enscribe: command not found
or when using sudo you get the following error message
sudo: enscribe: command not found
Solutions to enscribe: command not found
How To Fix enscribe: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu enscribe is provided by enscribe package.
enscribe is:
Enscribe converts the scanlines of the input image into frequency components and then using an inverse Fast Fourier Transform, converts them into sound. The left side of the image is the low frequency end, and the right is the high end, up to just under the Nyquist limit if you want it to. There are several tunable parameters as to how colour is converted into stereo sound and the frequency range to be used. This conversion can be used to create resilient audio watermarks or to simply create interesting sounds from images.
To fix this problem, we can install more using the command below.
sudo apt-get -y install enscribe
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install enscribe.
sudo apt -y install enscribe
Or if you have aptitude installed you can use the following command.
sudo aptitude install enscribe
Summary
In this tutorial we learn how to fix enscribe command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.