学习配置Common Lisp开发环境(日志记录)
前提,在.emacs中添加
; start package.el with emacs
(require 'package)
; add MELPA to repository list
(add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/"))
; initialize package.el
(package-initialize)
1,使用M-x package-install RET slime RET方式安装,但是提示找不到;
2,使用M-x package-refresh-contents进行刷新;
3,使用第一步进行安装,成功。
4,在SBCL官网下载源文件,并解压缩。
5,执行sh install.sh失败,提示
install.sh: line 13: output/prefix.def: No such file or directory
6,执行sh make.sh,失败;
7,使用brew命令(brew install sbcl --with-ldb)安装sbcl也失败;
8,使用brew命令(brew install sbcl)安装sbcl成功,提示
/usr/local/Cellar/sbcl/1.2.14: 48 files, 51M
9,下载quicklisp;
10,安装quicklisp;
11,配置.emacs;
12,打开emacs,输入M-x slime,失败,提示no such file or directory,lisp
13,In my .emacs file,after I removed (require 'auto-complete) (require 'auto-complete-config) (ac-config-default),the problem is resovled.Which I removed,had lead to a prompt Warning(initialization):An error occurred while loading ‘~/.emacs’: File error:Cannot open load file,no such file or directory,auto-complete
浙公网安备 33010602011771号