peruse command not found

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

Introduction

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

peruse: command not found

or when using sudo you get the following error message

sudo: peruse: command not found

Solutions to peruse: command not found

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

In Ubuntu peruse is provided by peruse package.

peruse is:

Peruse was created as a way to make exactly that as easy and pleasant as possible, and to simply get out of the way and let you read your comic books. One could say that it allows you to peruse your comic books at your leisure, but that would be a silly way of putting it - so, peruse your comic books at your leisure!

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

sudo apt-get -y install peruse

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

You can also use apt command to install peruse.

sudo apt -y install peruse

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

sudo aptitude install peruse

Summary

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