whisper-resize command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
whisper-resize: command not found
or when using sudo you get the following error message
sudo: whisper-resize: command not found
Solutions to whisper-resize: command not found
How To Fix whisper-resize: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu whisper-resize is provided by python3-whisper package.
python3-whisper is:
Whisper is a fixed size database, similar in design to the Round Robin database tool (RRDtool). Whisper is used by the Graphite scalable real time graphing system to store time-series data for later display.
To fix this problem, we can install more using the command below.
sudo apt-get -y install python3-whisper
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install python3-whisper.
sudo apt -y install python3-whisper
Or if you have aptitude installed you can use the following command.
sudo aptitude install python3-whisper
Summary
In this tutorial we learn how to fix whisper-resize command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.