sdlBrt command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sdlBrt: command not found
or when using sudo you get the following error message
sudo: sdlBrt: command not found
Solutions to sdlBrt: command not found
How To Fix sdlBrt: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sdlBrt is provided by sdlbrt package.
sdlbrt is:
sdlBasic is a small, efficient and multiplatform BASIC interpreter for creating games using the power of SDL library. It was inspired by the old and glorious AMOS.
This package includes sdlBasic runtime interpreter.
To fix this problem, we can install more using the command below.
sudo apt-get -y install sdlbrt
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install sdlbrt.
sudo apt -y install sdlbrt
Or if you have aptitude installed you can use the following command.
sudo aptitude install sdlbrt
Summary
In this tutorial we learn how to fix sdlBrt command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.