eldbus-codegen command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
eldbus-codegen: command not found
or when using sudo you get the following error message
sudo: eldbus-codegen: command not found
Solutions to eldbus-codegen: command not found
How To Fix eldbus-codegen: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu eldbus-codegen is provided by libecore-bin package.
libecore-bin is:
Ecore is a library of convenience functions. It provides abstractions for handling timers selections, Xdnd, event loops, and much more. Much of Ecore’s functionality is implemented in external modules.
This is part of the Enlightenment Foundation Libraries (EFL).
This package contains code generation utilities used in building EFL apps and a libproxy abstraction binary used by ecore_con.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libecore-bin
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libecore-bin.
sudo apt -y install libecore-bin
Or if you have aptitude installed you can use the following command.
sudo aptitude install libecore-bin
Summary
In this tutorial we learn how to fix eldbus-codegen command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.