sludge-compiler command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sludge-compiler: command not found
or when using sudo you get the following error message
sudo: sludge-compiler: command not found
Solutions to sludge-compiler: command not found
How To Fix sludge-compiler: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sludge-compiler is provided by sludge-compiler package.
sludge-compiler is:
SLUDGE is an open source adventure game engine. It combines a scripting language with IDE tools.
This package contains the command line SLUDGE compiler and is mainly intended as build dependency for SLUDGE game packages. Developers can use the Project Manager included in the Dev Kit for compiling games.
To fix this problem, we can install more using the command below.
sudo apt-get -y install sludge-compiler
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install sludge-compiler.
sudo apt -y install sludge-compiler
Or if you have aptitude installed you can use the following command.
sudo aptitude install sludge-compiler
Summary
In this tutorial we learn how to fix sludge-compiler command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.