ppsh command not found

In this troubleshooting guide we learn how to fix ppsh command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

ppsh: command not found

or when using sudo you get the following error message

sudo: ppsh: command not found

Solutions to ppsh: command not found

How To Fix ppsh: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu ppsh is provided by ppsh package.

ppsh is:

The ppsh program takes the output of an arbitrary Haskell Show output on stdin and pretty prints it to stdout. It uses the library provided in the libghc-pretty-show-dev package to parse the input and pretty print the output.

To fix this problem, we can install more using the command below.

sudo apt-get -y install ppsh

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install ppsh.

sudo apt -y install ppsh

Or if you have aptitude installed you can use the following command.

sudo aptitude install ppsh

Summary

In this tutorial we learn how to fix ppsh command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.