ttm command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ttm: command not found
or when using sudo you get the following error message
sudo: ttm: command not found
Solutions to ttm: command not found
How To Fix ttm: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ttm is provided by ttm package.
ttm is:
LaTeX is popular for specifying complex printed documents. TtM translates Plain TeX or LaTeX sources into HTML documents with their mathematics in MathML. It quickly produces web documents that are compact, editable and fast viewing. TtM translates almost all equations instead of converting them into images. TtM is a sister to TtH in package tth which translates TeX/LaTeX mathematics to HTML.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ttm
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ttm.
sudo apt -y install ttm
Or if you have aptitude installed you can use the following command.
sudo aptitude install ttm
Summary
In this tutorial we learn how to fix ttm command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.