st-console command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
st-console: command not found
or when using sudo you get the following error message
sudo: st-console: command not found
Solutions to st-console: command not found
How To Fix st-console: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu st-console is provided by st-console package.
st-console is:
st-console is command-line tool for calculate statistics from a file or standard input. It allow one to calculate: sum, arithmetic mean, median, percentile, quartile, standard deviation or standard error.
It’s a simpler solution for simpler problems focused on descriptive statistics, handy when you need quick mathematics results without leaving the shell.
To fix this problem, we can install more using the command below.
sudo apt-get -y install st-console
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install st-console.
sudo apt -y install st-console
Or if you have aptitude installed you can use the following command.
sudo aptitude install st-console
Summary
In this tutorial we learn how to fix st-console command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.