eos-application-manifest command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
eos-application-manifest: command not found
or when using sudo you get the following error message
sudo: eos-application-manifest: command not found
Solutions to eos-application-manifest: command not found
How To Fix eos-application-manifest: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu eos-application-manifest is provided by libendless-bin package.
libendless-bin is:
Endless OS is a Linux-based operating system which provides a simplified and streamlined user experience using a customised desktop environment based on GNOME. Endless OS uses a read-only root file system managed by OSTree with application bundles overlaid on top.
Endless SDK provides libraries and development tools for building applications for Endless OS.
This package provides development tools for Endless SDK.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libendless-bin
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libendless-bin.
sudo apt -y install libendless-bin
Or if you have aptitude installed you can use the following command.
sudo aptitude install libendless-bin
Summary
In this tutorial we learn how to fix eos-application-manifest command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.