tralics command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tralics: command not found
or when using sudo you get the following error message
sudo: tralics: command not found
Solutions to tralics: command not found
How To Fix tralics: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tralics is provided by tralics package.
tralics is:
A configurable tool that processes LaTeX source, generating parseable XML. The XML is based on semantics of the text and can be used to process the document and convert into other format.
From: http://www-sop.inria.fr/apics/tralics/
To fix this problem, we can install more using the command below.
sudo apt-get -y install tralics
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tralics.
sudo apt -y install tralics
Or if you have aptitude installed you can use the following command.
sudo aptitude install tralics
Summary
In this tutorial we learn how to fix tralics command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.