pulldown-cmark command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
pulldown-cmark: command not found
or when using sudo you get the following error message
sudo: pulldown-cmark: command not found
Solutions to pulldown-cmark: command not found
How To Fix pulldown-cmark: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pulldown-cmark is provided by pulldown-cmark package.
pulldown-cmark is:
pulldown-cmark is a pull parser library for CommonMark, written in Rust. This package contains a simple command-line tool for rendering to HTML, based on the library.
To fix this problem, we can install more using the command below.
sudo apt-get -y install pulldown-cmark
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pulldown-cmark.
sudo apt -y install pulldown-cmark
Or if you have aptitude installed you can use the following command.
sudo aptitude install pulldown-cmark
Summary
In this tutorial we learn how to fix pulldown-cmark command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.