galculator command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
galculator: command not found
or when using sudo you get the following error message
sudo: galculator: command not found
Solutions to galculator: command not found
How To Fix galculator: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu galculator is provided by galculator package.
galculator is:
galculator is a scientific calculator. It supports different number bases (DEC/HEX/OCT/BIN) and angles bases (DEG/RAD/GRAD) and features a wide range of mathematical (basic arithmetic operations, trigonometric functions, etc) and other useful functions (memory, etc) at the moment. galculator can be used in algebraic mode as well as in Reverse Polish Notation (RPN).
To fix this problem, we can install more using the command below.
sudo apt-get -y install galculator
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install galculator.
sudo apt -y install galculator
Or if you have aptitude installed you can use the following command.
sudo aptitude install galculator
Summary
In this tutorial we learn how to fix galculator command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.