Ryan Marcus
August 19th, 2007, 11:02 AM
Hi, I'm very new to the world of eMacs, LISP, and SLIME. I took a year long course in LISP at my school, who used machines running Ubuntu.
At school, eMacs and LISP was pre-compiled and installed for us, and I am having a bit of difficultly replicating that set up on my home machine.
If anybody could point me towards some instructions that are a bit more in-depth then adding those four lines to your .emacs file, I would be incredibly grateful.
Thanks in advance for your help.
[edit]
Ah ha! I figured it out. For anybody else in need of help:
Install xEmacs from "Add / Remove Software"
Install the packages "sbcl" and "slime" from Synaptic.
Set your ~/.emacs file to:
(setq inferior-lisp-program "/usr/bin/sbcl")
(add-to-list 'load-path "/usr/share/common-lisp/source/slime/")
(require 'slime)
(slime-setup)
At school, eMacs and LISP was pre-compiled and installed for us, and I am having a bit of difficultly replicating that set up on my home machine.
If anybody could point me towards some instructions that are a bit more in-depth then adding those four lines to your .emacs file, I would be incredibly grateful.
Thanks in advance for your help.
[edit]
Ah ha! I figured it out. For anybody else in need of help:
Install xEmacs from "Add / Remove Software"
Install the packages "sbcl" and "slime" from Synaptic.
Set your ~/.emacs file to:
(setq inferior-lisp-program "/usr/bin/sbcl")
(add-to-list 'load-path "/usr/share/common-lisp/source/slime/")
(require 'slime)
(slime-setup)