lcalc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
lcalc: command not found
or when using sudo you get the following error message
sudo: lcalc: command not found
Solutions to lcalc: command not found
How To Fix lcalc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu lcalc is provided by lcalc package.
lcalc is:
lcalc is a program for computing zeros and values of L-functions. Supported L-functions include the Riemann zeta function, the L-function of the Ramanujan delta function, and L-functions of elliptic curves defined over the rationals.
To fix this problem, we can install more using the command below.
sudo apt-get -y install lcalc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install lcalc.
sudo apt -y install lcalc
Or if you have aptitude installed you can use the following command.
sudo aptitude install lcalc
Summary
In this tutorial we learn how to fix lcalc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.