mit-scheme-x86-64 command not found

In this troubleshooting guide we learn how to fix mit-scheme-x86-64 command not found error message

Introduction

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

mit-scheme-x86-64: command not found

or when using sudo you get the following error message

sudo: mit-scheme-x86-64: command not found

Solutions to mit-scheme-x86-64: command not found

How To Fix mit-scheme-x86-64: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu mit-scheme-x86-64 is provided by mit-scheme package.

mit-scheme is:

MIT/GNU Scheme is an implementation of the Scheme programming language, providing an interpreter, compiler, source-code debugger, integrated Emacs-like editor, and a large runtime library. MIT/GNU Scheme is best suited to programming large applications with a rapid development cycle.

This package contains the development environment.

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

sudo apt-get -y install mit-scheme

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

You can also use apt command to install mit-scheme.

sudo apt -y install mit-scheme

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

sudo aptitude install mit-scheme

Summary

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