apngasm command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
apngasm: command not found
or when using sudo you get the following error message
sudo: apngasm: command not found
Solutions to apngasm: command not found
How To Fix apngasm: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu apngasm is provided by apngasm package.
apngasm is:
Tools to create APNG file from individual PNG files with user given delay.
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 apngasm
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install apngasm.
sudo apt -y install apngasm
Or if you have aptitude installed you can use the following command.
sudo aptitude install apngasm
Summary
In this tutorial we learn how to fix apngasm command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.