bwbasic command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
bwbasic: command not found
or when using sudo you get the following error message
sudo: bwbasic: command not found
Solutions to bwbasic: command not found
How To Fix bwbasic: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu bwbasic is provided by bwbasic package.
bwbasic is:
The Bywater BASIC Interpreter (bwBASIC) implements a large superset of the ANSI Standard for Minimal BASIC (X3.60-1978) and a significant subset of the ANSI Standard for Full BASIC (X3.113-1987) in C. It also offers shell programming facilities as an extension of BASIC. bwBASIC seeks to be as portable as possible.
To fix this problem, we can install more using the command below.
sudo apt-get -y install bwbasic
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install bwbasic.
sudo apt -y install bwbasic
Or if you have aptitude installed you can use the following command.
sudo aptitude install bwbasic
Summary
In this tutorial we learn how to fix bwbasic command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.