normaliz command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
normaliz: command not found
or when using sudo you get the following error message
sudo: normaliz: command not found
Solutions to normaliz: command not found
How To Fix normaliz: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu normaliz is provided by normaliz-bin package.
normaliz-bin is:
Normaliz is a mathematical tool for computations in affine monoids, vector configurations, lattice polytopes, and rational cones.
This package provides the command line utility normaliz.
To fix this problem, we can install more using the command below.
sudo apt-get -y install normaliz-bin
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install normaliz-bin.
sudo apt -y install normaliz-bin
Or if you have aptitude installed you can use the following command.
sudo aptitude install normaliz-bin
Summary
In this tutorial we learn how to fix normaliz command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.