embryo_cc command not found

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

Introduction

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

embryo_cc: command not found

or when using sudo you get the following error message

sudo: embryo_cc: command not found

Solutions to embryo_cc: command not found

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

In Ubuntu embryo_cc is provided by libembryo-bin package.

libembryo-bin is:

Embryo is a tiny library designed to interpret limited Small programs compiled by the included compiler, embryo_cc. It is mostly a cleaned up and smaller version of the original Small abstract machine. The compiler is mostly untouched.

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

This package contains the embryo compiler: embryo_cc.

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

sudo apt-get -y install libembryo-bin

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

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

sudo apt -y install libembryo-bin

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

sudo aptitude install libembryo-bin

Summary

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