oaklisp command not found

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

Introduction

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

oaklisp: command not found

or when using sudo you get the following error message

sudo: oaklisp: command not found

Solutions to oaklisp: command not found

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

In Ubuntu oaklisp is provided by oaklisp package.

oaklisp is:

Oaklisp is a dialect of Scheme that combines lexical scoping with first-class types. It uses a byte-coded implementation, but is reasonably fast anyway. Complete with bignums, formatted output, transparent delays, RnRS compatibility package; all the luxuries except floating point and foreign function calls.

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

sudo apt-get -y install oaklisp

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

You can also use apt command to install oaklisp.

sudo apt -y install oaklisp

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

sudo aptitude install oaklisp

Summary

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