eog command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
eog: command not found
or when using sudo you get the following error message
sudo: eog: command not found
Solutions to eog: command not found
How To Fix eog: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu eog is provided by eog package.
eog is:
eog or the Eye of GNOME is a simple graphics viewer for the GNOME desktop which uses the gdk-pixbuf library. It can deal with large images, and zoom and scroll with constant memory usage. Its goals are simplicity and standards compliance.
To fix this problem, we can install more using the command below.
sudo apt-get -y install eog
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install eog.
sudo apt -y install eog
Or if you have aptitude installed you can use the following command.
sudo aptitude install eog
Summary
In this tutorial we learn how to fix eog command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.