templates2ada command not found

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

Introduction

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

templates2ada: command not found

or when using sudo you get the following error message

sudo: templates2ada: command not found

Solutions to templates2ada: command not found

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

In Ubuntu templates2ada is provided by libtemplates-parser14-dev package.

libtemplates-parser14-dev is:

The main goal is to ease the development of Web servers. In CGI (Common Gateway Interface) applications, you have to write HTML pages in the program (in Ada or whatever other language) by using some specific libraries or by using only basic output functions. This is of course not mandatory but by lack of a good library every Web development ends up doing just that. Templates Parser takes that burden off of you.

This package contains the static libraries, documentation, tools and Ada specification files.

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

sudo apt-get -y install libtemplates-parser14-dev

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

You can also use apt command to install libtemplates-parser14-dev.

sudo apt -y install libtemplates-parser14-dev

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

sudo aptitude install libtemplates-parser14-dev

Summary

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