edje_cc command not found

In this troubleshooting guide we learn how to fix edje_cc command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

edje_cc: command not found

or when using sudo you get the following error message

sudo: edje_cc: command not found

Solutions to edje_cc: command not found

How To Fix edje_cc: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu edje_cc is provided by libedje-bin package.

libedje-bin is:

Edje is a graphical layout and animation library for animated resizable, compressed and scalable themes. It is the theming engine behind Enlightenment.

This is part of the Enlightenment Foundation Libraries (EFL).

This package contains binaries for the creation & debugging of edje themes.

To fix this problem, we can install more using the command below.

sudo apt-get -y install libedje-bin

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install libedje-bin.

sudo apt -y install libedje-bin

Or if you have aptitude installed you can use the following command.

sudo aptitude install libedje-bin

Summary

In this tutorial we learn how to fix edje_cc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.