flydraw command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
flydraw: command not found
or when using sudo you get the following error message
sudo: flydraw: command not found
Solutions to flydraw: command not found
How To Fix flydraw: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu flydraw is provided by flydraw package.
flydraw is:
flydraw is a drawing tool based on an interpreter which parses a language featuring rich graphic primitives; it uses libgd to output GIF, JPEG, or PNG files.
To fix this problem, we can install more using the command below.
sudo apt-get -y install flydraw
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install flydraw.
sudo apt -y install flydraw
Or if you have aptitude installed you can use the following command.
sudo aptitude install flydraw
Summary
In this tutorial we learn how to fix flydraw command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.