tinyscheme command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tinyscheme: command not found
or when using sudo you get the following error message
sudo: tinyscheme: command not found
Solutions to tinyscheme: command not found
How To Fix tinyscheme: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tinyscheme is provided by tinyscheme package.
tinyscheme is:
TinyScheme is an implementation of the algorithmic language Scheme that aims to very small memory footprint while being as close to R5RS as practically feasible. TinyScheme is also a good base for hacking, given the implementation’s small size, easy gluing with C and code being fully reentrant.
TinyScheme is based on an s-expression evaluator. This package distributes TinyScheme as a standalone executable.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tinyscheme
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tinyscheme.
sudo apt -y install tinyscheme
Or if you have aptitude installed you can use the following command.
sudo aptitude install tinyscheme
Summary
In this tutorial we learn how to fix tinyscheme command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.