t3make command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
t3make: command not found
or when using sudo you get the following error message
sudo: t3make: command not found
Solutions to t3make: command not found
How To Fix t3make: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu t3make is provided by tads3-dev package.
tads3-dev is:
TADS is the Text Adventure Development System, a set of tools for writing and playing text-based adventure games. You interface with these games by entering commands in English, and the game responds with a textual description of the result.
This package contains a compiler which produces machine-independent TADS version 3 game files, as well as the standard TADS 3 library. The input language is an object-oriented high-level language similar to C or C++.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tads3-dev
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tads3-dev.
sudo apt -y install tads3-dev
Or if you have aptitude installed you can use the following command.
sudo aptitude install tads3-dev
Summary
In this tutorial we learn how to fix t3make command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.