tmxviewer command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tmxviewer: command not found
or when using sudo you get the following error message
sudo: tmxviewer: command not found
Solutions to tmxviewer: command not found
How To Fix tmxviewer: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tmxviewer 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 tmxviewer command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.