brandy command not found

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

Introduction

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

brandy: command not found

or when using sudo you get the following error message

sudo: brandy: command not found

Solutions to brandy: command not found

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

In Ubuntu brandy is provided by brandy package.

brandy is:

Matrix Brandy is an interpreter for BBC BASIC. It is source code compatible with the BASIC VI interpreter in RISC OS.

BBC BASIC VI is the 64-bit floating-point version of BASIC that came with the Acorn RISC OS machines, itself a development of the version of BASIC on the BBC Micro. Matrix Brandy aims to be source code compatible with this, including some extensions found in the RISC PC versions and the later RISC OS 5 as made available for several systems including the Raspberry Pi.

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

sudo apt-get -y install brandy

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

You can also use apt command to install brandy.

sudo apt -y install brandy

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

sudo aptitude install brandy

Summary

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