aribas command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
aribas: command not found
or when using sudo you get the following error message
sudo: aribas: command not found
Solutions to aribas: command not found
How To Fix aribas: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu aribas is provided by aribas package.
aribas is:
ARIBAS is an interactive interpreter suitable for big integer arithmetic and multiprecision floating point arithmetic. It has a syntax similar to Pascal or Modula-2, but contains also features from other programming languages like C, Lisp, Oberon.
To fix this problem, we can install more using the command below.
sudo apt-get -y install aribas
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install aribas.
sudo apt -y install aribas
Or if you have aptitude installed you can use the following command.
sudo aptitude install aribas
Summary
In this tutorial we learn how to fix aribas command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.