gorst command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gorst: command not found
or when using sudo you get the following error message
sudo: gorst: command not found
Solutions to gorst: command not found
How To Fix gorst: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gorst is provided by gorst package.
gorst is:
This is a Go implementation of reStructuredText. developed on the basis of Go markdown module implemented by Michael Teichgräber.
Only Support for HTML output is implemented.
This package provides command line interface for this implementation.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gorst
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gorst.
sudo apt -y install gorst
Or if you have aptitude installed you can use the following command.
sudo aptitude install gorst
Summary
In this tutorial we learn how to fix gorst command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.