tadsc command not found

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

Introduction

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

tadsc: command not found

or when using sudo you get the following error message

sudo: tadsc: command not found

Solutions to tadsc: command not found

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

In Ubuntu tadsc is provided by tads2-dev package.

tads2-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 2 game files, as well as the standard TADS 2 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 tads2-dev

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

You can also use apt command to install tads2-dev.

sudo apt -y install tads2-dev

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

sudo aptitude install tads2-dev

Summary

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