lisaac command not found

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

Introduction

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

lisaac: command not found

or when using sudo you get the following error message

sudo: lisaac: command not found

Solutions to lisaac: command not found

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

In Ubuntu lisaac is provided by lisaac package.

lisaac is:

Lisaac is a small prototype-based programming language. The ideas in Lisaac are mostly inspired by Smalltalk (all values are objects), Self (prototype-based) and Eiffel (design by contract). It has the following features:

  • pure object language
  • very fast (like C code)
  • dynamic and multiple inheritance
  • dynamic definition slots
  • static typing (invariant)
  • generic types
  • auto-cast type system
  • programming by contract
  • interrupt manager
  • include C code facilities

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

sudo apt-get -y install lisaac

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

You can also use apt command to install lisaac.

sudo apt -y install lisaac

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

sudo aptitude install lisaac

Summary

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