marked command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
marked: command not found
or when using sudo you get the following error message
sudo: marked: command not found
Solutions to marked: command not found
How To Fix marked: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu marked is provided by node-marked package.
node-marked is:
Marked implements all markdown features while having a high processing speed. It is also fully compatible with client-side javascript.
Additionally Marked also implements github flavored markdown.
This package contains the marked executable and node module.
To fix this problem, we can install more using the command below.
sudo apt-get -y install node-marked
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install node-marked.
sudo apt -y install node-marked
Or if you have aptitude installed you can use the following command.
sudo aptitude install node-marked
Summary
In this tutorial we learn how to fix marked command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.