ikarus-scheme-script command not found

In this troubleshooting guide we learn how to fix ikarus-scheme-script command not found error message

Introduction

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

ikarus-scheme-script: command not found

or when using sudo you get the following error message

sudo: ikarus-scheme-script: command not found

Solutions to ikarus-scheme-script: command not found

How To Fix ikarus-scheme-script: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu ikarus-scheme-script is provided by ikarus package.

ikarus is:

Ikarus is a compiler-based implementation of the Scheme programming language which targets the i386/amd64 (with sse2) architecture. It has good performance, is rather light weight, is case-sensitive, and implements a substantial portion of the language described in R6RS.

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

sudo apt-get -y install ikarus

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

You can also use apt command to install ikarus.

sudo apt -y install ikarus

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

sudo aptitude install ikarus

Summary

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