schubmult command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
schubmult: command not found
or when using sudo you get the following error message
sudo: schubmult: command not found
Solutions to schubmult: command not found
How To Fix schubmult: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu schubmult is provided by lrcalc package.
lrcalc is:
The “Littlewood-Richardson Calculator” is a package of C programs for computing Littlewood-Richardson coefficients, providing fast calculation of single LR coefficients, products of Schur functions, and skew Schur functions. Its interface uses the same notation as the SF package of John Stembridge, to make it easier to use both packages at the same time.
This package contains the command-line programs.
To fix this problem, we can install more using the command below.
sudo apt-get -y install lrcalc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install lrcalc.
sudo apt -y install lrcalc
Or if you have aptitude installed you can use the following command.
sudo aptitude install lrcalc
Summary
In this tutorial we learn how to fix schubmult command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.