polymake command not found

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

Introduction

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

polymake: command not found

or when using sudo you get the following error message

sudo: polymake: command not found

Solutions to polymake: command not found

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

In Ubuntu polymake is provided by polymake package.

polymake is:

Polymake started out as a tool for the algorithmic treatment of convex polyhedra. By now it also deals with finite simplicial complexes, tight spans of finite metric spaces, polyhedral surfaces, and other discrete mathematical objects.

This package contains the core module and the application modules.

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

sudo apt-get -y install polymake

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

You can also use apt command to install polymake.

sudo apt -y install polymake

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

sudo aptitude install polymake

Summary

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