pepper command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
pepper: command not found
or when using sudo you get the following error message
sudo: pepper: command not found
Solutions to pepper: command not found
How To Fix pepper: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pepper is provided by pepper package.
pepper is:
pepper is a flexible command-line tool for retrieving statistics and generating reports from source code repositories. It ships with several graphical and textual reports, and is easily extendable using the Lua scripting language. pepper includes support for multiple version control systems, including Git and Subversion. Using native language bindings, multi-threading and a local revision cache, it provides fast access to repository data.
To fix this problem, we can install more using the command below.
sudo apt-get -y install pepper
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pepper.
sudo apt -y install pepper
Or if you have aptitude installed you can use the following command.
sudo aptitude install pepper
Summary
In this tutorial we learn how to fix pepper command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.