hacha command not found

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

Introduction

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

hacha: command not found

or when using sudo you get the following error message

sudo: hacha: command not found

Solutions to hacha: command not found

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

In Ubuntu hacha is provided by hevea package.

hevea is:

Its remarkable features are

  • It produces good output. Special symbols (like mathematical symbols) are translated into HTML entities which should be rendered by any graphical browser. Picture files are only generated on demand, for instance when translating graphics.
  • It is highly configurable through (La)TeX macros. Though aimed at LaTeX input it understands a fair subset of TeX’s macro language.
  • It runs fast.

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

sudo apt-get -y install hevea

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

You can also use apt command to install hevea.

sudo apt -y install hevea

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

sudo aptitude install hevea

Summary

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