wadc command not found

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

Introduction

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

wadc: command not found

or when using sudo you get the following error message

sudo: wadc: command not found

Solutions to wadc: command not found

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

In Ubuntu wadc is provided by wadc package.

wadc is:

WadC (Wad Compiler) is an Integrated Development Environment and functional programming language for developing Doom-engine maps. It can be used to generate complex levels which can be saved in Doom’s WAD format.

The IDE includes a text-editor component; a debug output pane and a 2D drawing pane which previews the current script’s output. Also included is an experimental command line interface, wadccli.

An external nodes builder (such as glbsp) is required before the resulting WAD file can be played by a doom-engine.

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

sudo apt-get -y install wadc

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

You can also use apt command to install wadc.

sudo apt -y install wadc

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

sudo aptitude install wadc

Summary

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