paps command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
paps: command not found
or when using sudo you get the following error message
sudo: paps: command not found
Solutions to paps: command not found
How To Fix paps: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu paps is provided by paps package.
paps is:
Paps reads a UTF-8 encoded file and generates a PostScript language rendering of the file. The rendering is done by creating outline curves through the pango ft2 backend.
To fix this problem, we can install more using the command below.
sudo apt-get -y install paps
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install paps.
sudo apt -y install paps
Or if you have aptitude installed you can use the following command.
sudo aptitude install paps
Summary
In this tutorial we learn how to fix paps command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.