marutex command not found

In this troubleshooting guide we learn how to fix marutex command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

marutex: command not found

or when using sudo you get the following error message

sudo: marutex: command not found

Solutions to marutex: command not found

How To Fix marutex: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu marutex is provided by ruby-maruku package.

ruby-maruku is:

Maruku implements a superset of the Markdown language, designed to easily create HTML documents while only focusing on the high-level structure and not the details. Maruku also supports LaTeX export, which means you can produce PDF output.

Maruku prides itself of being decently fast on long documents.

To fix this problem, we can install more using the command below.

sudo apt-get -y install ruby-maruku

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install ruby-maruku.

sudo apt -y install ruby-maruku

Or if you have aptitude installed you can use the following command.

sudo aptitude install ruby-maruku

Summary

In this tutorial we learn how to fix marutex command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.