chezscheme command not found

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

Introduction

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

chezscheme: command not found

or when using sudo you get the following error message

sudo: chezscheme: command not found

Solutions to chezscheme: command not found

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

In Ubuntu chezscheme is provided by chezscheme package.

chezscheme is:

Chez Scheme is both a programming language and an implementation of that language, with supporting tools and documentation.

As a superset of the language described in the Revised^6 Report on the Algorithmic Language Scheme (R6RS), Chez Scheme supports all standard features of Scheme, including first-class procedures, proper treatment of tail calls, continuations, user-defined records, libraries, exceptions, and hygienic macro expansion.

Chez Scheme also includes extensive support for interfacing with C and other languages, support for multiple threads possibly running on multiple cores, non-blocking I/O, and many other features.

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

sudo apt-get -y install chezscheme

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

You can also use apt command to install chezscheme.

sudo apt -y install chezscheme

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

sudo aptitude install chezscheme

Summary

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