gtml command not found

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

Introduction

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

gtml: command not found

or when using sudo you get the following error message

sudo: gtml: command not found

Solutions to gtml: command not found

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

In Ubuntu gtml is provided by gtml package.

gtml is:

GTML is an HTML pre-processor which adds some extra features specially designed for maintaining multiple web pages. HTML files generated by GTML are just like any other HTML files. Because GTML does not attempt to interpret your HTML commands in any way, it’s fully compatible with all versions of HTML, and does not require any specific browser or server.

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

sudo apt-get -y install gtml

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

You can also use apt command to install gtml.

sudo apt -y install gtml

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

sudo aptitude install gtml

Summary

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