下面是Mac环境下Mit-Scheme解释器的安装方法。
首先,到官网下载安装文件,并安装。
http://www.gnu.org/software/mit-scheme/
安装之后,为了防止安装路径中特殊字符引起的麻烦,我将其中的可执行部分单独拷贝到一个容易查找的地方:
cp -r /Applications/MIT\:GNU\ Scheme.app/Contents/Resources/ /XXX/Mit-Scheme
然后打开~/.emacs配置文件,并添加以下内容:
;;;scheme
(setenv "MITSCHEME_LIBRARY_PATH"
"/XXX/Mit-Scheme")
(add-to-list 'exec-path "/XXX/Mit-Scheme")
;;; Always do syntax highlighting
(global-font-lock-mode 1)
;;; Also highlight parens
(setq show-paren-delay 0
show-paren-style 'parenthesis)
(show-paren-mode 1)
;;; This is the binary name of my scheme implementation
(setq scheme-program-name "mit-scheme")
其中,“XXX”为刚才拷贝的目录所在路径。
这样,在emacs下执行”M-x run-scheme”就可以进入scheme解释器运行环境了。