sollya command not found

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

Introduction

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

sollya: command not found

or when using sudo you get the following error message

sudo: sollya: command not found

Solutions to sollya: command not found

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

In Ubuntu sollya is provided by sollya package.

sollya is:

Sollya is both a tool environment and a library for safe floating-point code development. It offers a convenient way to perform computations with multiple precision interval arithmetic. It is particularly targeted to the automated implementation of mathematical floating-point libraries.

Initially, Sollya was intended more specifically for people implementing numerical functions in mathematical libraries (e.g., exp, arccos, tanh, etc.). Since then, the tool has evolved and has now become interesting not only to developers of mathematical libraries, but also to everyone who needs to perform numerical experiments in an environment that is safe with respect to round-off errors.

This package provides the command-line tool sollya.

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

sudo apt-get -y install sollya

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

You can also use apt command to install sollya.

sudo apt -y install sollya

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

sudo aptitude install sollya

Summary

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