In order to run the SICM code, you need to install the scmutils
library. Just go to the official page to download the library and follow the official instructions to install it in a Linux operating system.
When you try to run it, your system may give the following error message:
/usr/local/bin/mechanics: line 16: exec: xterm: not found
If so, you should install the program xterm
first.
.
Also, in case you like to use Emacs as editor, you can:
Just include the following in your
.emacs
file:
(defun mechanics () (interactive) (run-scheme "ROOT/mit-scheme/bin/scheme --library ROOT/mit-scheme/lib" ))
Replace
ROOT
with the directory in which you installed thescmutils
software. (Remember to replace it in both places. If it is installed differently on your system, just make sure the string has the form “/path/to/mit-scheme --library /path/to/scmutils-library
“.) Restartemacs
(or useC-x C-e
to evaluate the mechanics defun), and launch the environment with the commandM-x
mechanics.— Using GNU Emacs With SCMUtils
— Aaron Maxwell
.
In my Ubuntu 18.04, the paths are:
(defun mechanics() (interactive) (run-scheme "/usr/local/scmutils/mit-scheme/bin/scheme --library /usr/local/scmutils/mit-scheme/lib" ))
— Me@2019-04-07 02:52:50 PM
.
.
2019.04.07 Sunday (c) All rights reserved by ACHK