geard command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
geard: command not found
or when using sudo you get the following error message
sudo: geard: command not found
Solutions to geard: command not found
How To Fix geard: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu geard is provided by python3-gear package.
python3-gear is:
python-gear is a pure-Python asynchronous library to interface with Gearman.
It provides interfaces to build a client or worker, and access to the administrative protocol. The design approach is to keep it simple, with a relatively thin abstration of the Gearman protocol itself. It should be easy to use to build a client or worker that operates either synchronously or asynchronously.
The module also provides a simple Gearman server for use as a convenience in unit tests. The server is not designed for production use under load.
Installing the suggested python-statsd package would add support for reporting to statsd a frontend to Graphite a stats collection and graphing server.
This package contains the Python 3.x module.
To fix this problem, we can install more using the command below.
sudo apt-get -y install python3-gear
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install python3-gear.
sudo apt -y install python3-gear
Or if you have aptitude installed you can use the following command.
sudo aptitude install python3-gear
Summary
In this tutorial we learn how to fix geard command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.