terraingenerator command not found

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

Introduction

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

terraingenerator: command not found

or when using sudo you get the following error message

sudo: terraingenerator: command not found

Solutions to terraingenerator: command not found

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

In Ubuntu terraingenerator is provided by tiled package.

tiled is:

Tiled is a general purpose tile map editor. It’s built to be easy to use, yet capable of catering to a host of varying game engines, whether your game is an RPG, platformer or Breakout clone. Tiled supports plugins to read and write map formats, in addition to its map format, to support map formats in use by engines.

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

sudo apt-get -y install tiled

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

You can also use apt command to install tiled.

sudo apt -y install tiled

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

sudo aptitude install tiled

Summary

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