untex command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
untex: command not found
or when using sudo you get the following error message
sudo: untex: command not found
Solutions to untex: command not found
How To Fix untex: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu untex is provided by untex package.
untex is:
The program will remove “some LaTeX commands” from a file (it will optionally try to strip out all mathematics, too). It also has an option to honour \input and \include commands in the file. Input is read from files and results are sent to stdout.
To fix this problem, we can install more using the command below.
sudo apt-get -y install untex
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install untex.
sudo apt -y install untex
Or if you have aptitude installed you can use the following command.
sudo aptitude install untex
Summary
In this tutorial we learn how to fix untex command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.