kcalc command not found

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

Introduction

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

kcalc: command not found

or when using sudo you get the following error message

sudo: kcalc: command not found

Solutions to kcalc: command not found

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

In Ubuntu kcalc is provided by kcalc package.

kcalc is:

KCalc is a scientific calculator.

KCalc provides:

  • Trigonometric functions, logic operations, and statistical calculations
  • Calculation in decimal, hexadecimal, octal, and binary bases
  • Memory functions for storing results
  • A comprehensive collection of mathematical constants

This package is part of the KDE Utilities module.

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

sudo apt-get -y install kcalc

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

You can also use apt command to install kcalc.

sudo apt -y install kcalc

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

sudo aptitude install kcalc

Summary

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