stalin command not found

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

Introduction

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

stalin: command not found

or when using sudo you get the following error message

sudo: stalin: command not found

Solutions to stalin: command not found

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

In Ubuntu stalin is provided by stalin package.

stalin is:

stalin is an aggressive self-hosting Scheme compiler, designed to generate resource efficient stand-alone executables with very high computational performance. It is a batch mode compiler like gcc, not an interpreter, and is designed to be used only after your code has stabilized.

It places a few limitations on the content of the source code. For example, you may not LOAD or EVAL new expressions or procedure definitions at runtime, but in exchange, it is able to perform various global analyses which may allow it to transparently map Scheme types to C types and to use native C arithmetic operations on a per-expression basis, whenever such operations are proven safe. Further stalin can often reduce or eliminate run-time type checking and dispatching, and omit garbage collection for data of limited scope or accessibility, while omitting unreachable data altogether.

stalin also has a foreign procedure interface to both Xlib and OpenGL.

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

sudo apt-get -y install stalin

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

You can also use apt command to install stalin.

sudo apt -y install stalin

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

sudo aptitude install stalin

Summary

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