gifview command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gifview: command not found
or when using sudo you get the following error message
sudo: gifview: command not found
Solutions to gifview: command not found
How To Fix gifview: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gifview is provided by gifsicle package.
gifsicle is:
This is a tool for manipulating GIF image files. It has good support for transparency and colormap manipulation, simple image transformations (cropping, flipping), and creating, deconstructing, and editing GIF animations, which it can also optimize for space.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gifsicle
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gifsicle.
sudo apt -y install gifsicle
Or if you have aptitude installed you can use the following command.
sudo aptitude install gifsicle
Summary
In this tutorial we learn how to fix gifview command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.