concalc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
concalc: command not found
or when using sudo you get the following error message
sudo: concalc: command not found
Solutions to concalc: command not found
How To Fix concalc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu concalc is provided by concalc package.
concalc is:
concalc is a calculator for the Linux console. It is just the parser-algorithm of extcalc packed into a simple console program. You can use it if you need a calculator in your shell. concalc is also able to run scripts written in a C-like programming language.
To fix this problem, we can install more using the command below.
sudo apt-get -y install concalc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install concalc.
sudo apt -y install concalc
Or if you have aptitude installed you can use the following command.
sudo aptitude install concalc
Summary
In this tutorial we learn how to fix concalc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.