gladtex command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gladtex: command not found
or when using sudo you get the following error message
sudo: gladtex: command not found
Solutions to gladtex: command not found
How To Fix gladtex: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gladtex is provided by gladtex package.
gladtex is:
GladTeX is a preprocessor that enables the use of LaTeX equations within HTML files. The equations, embedded in
… tags, as if within $$..$$ in LaTeX, is fed through LaTeX and replaced by images.
Additionally all images get an alt-tag for alternative texts that contains the LaTeX-equivalent of the image. This is handy for text-mode browsers or blind people using a screen reader.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gladtex
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gladtex.
sudo apt -y install gladtex
Or if you have aptitude installed you can use the following command.
sudo aptitude install gladtex
Summary
In this tutorial we learn how to fix gladtex command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.