grip command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
grip: command not found
or when using sudo you get the following error message
sudo: grip: command not found
Solutions to grip: command not found
How To Fix grip: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu grip is provided by grip package.
grip is:
Grip is a command-line server application written in Python that uses the GitHub markdown API to render a local readme file. The styles come directly from GitHub, so you’ll know exactly how it will appear. Changes you make to the Readme will be instantly reflected in the browser without requiring a page refresh.
To fix this problem, we can install more using the command below.
sudo apt-get -y install grip
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install grip.
sudo apt -y install grip
Or if you have aptitude installed you can use the following command.
sudo aptitude install grip
Summary
In this tutorial we learn how to fix grip command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.