squeak command not found

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

Introduction

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

squeak: command not found

or when using sudo you get the following error message

sudo: squeak: command not found

Solutions to squeak: command not found

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

In Ubuntu squeak is provided by squeak-vm package.

squeak-vm is:

Squeak is a full-featured implementation of the Smalltalk programming language and environment based on (and largely compatible with) the original Smalltalk-80 system.

This package contains just the Unix Squeak virtual machine. You will likely need also an image file containing a “snapshot” of a live Squeak session - e.g. one of the Debian packages etoys or scratch.

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

sudo apt-get -y install squeak-vm

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

You can also use apt command to install squeak-vm.

sudo apt -y install squeak-vm

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

sudo aptitude install squeak-vm

Summary

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