apngdis command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
apngdis: command not found
or when using sudo you get the following error message
sudo: apngdis: command not found
Solutions to apngdis: command not found
How To Fix apngdis: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu apngdis is provided by apngdis package.
apngdis is:
Extract individual PNG files from animated PNG.
The Animated Portable Network Graphics (APNG) file format is an extension to the Portable Network Graphics (PNG) specification. It allows for animated PNG files that work similarly to animated GIF files, while retaining backward compatibility with non-animated PNG files and adding support for 8-bit transparency and 24-bit images.
To fix this problem, we can install more using the command below.
sudo apt-get -y install apngdis
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install apngdis.
sudo apt -y install apngdis
Or if you have aptitude installed you can use the following command.
sudo aptitude install apngdis
Summary
In this tutorial we learn how to fix apngdis command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.