squirrel3 command not found

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

Introduction

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

squirrel3: command not found

or when using sudo you get the following error message

sudo: squirrel3: command not found

Solutions to squirrel3: command not found

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

In Ubuntu squirrel3 is provided by squirrel3 package.

squirrel3 is:

Squirrel is a high-level imperative, object-oriented programming language, designed to be a lightweight scripting language that fits in the size, memory bandwidth, and real-time requirements of applications like video games.

This package contains the Squirrel command line interpreter and bytecode compiler.

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

sudo apt-get -y install squirrel3

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

You can also use apt command to install squirrel3.

sudo apt -y install squirrel3

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

sudo aptitude install squirrel3

Summary

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