Skip to content

Instantly share code, notes, and snippets.

@sonnyksimon
Created December 13, 2019 14:32
Show Gist options
  • Save sonnyksimon/b051725126f71758f7e3035882ca12b6 to your computer and use it in GitHub Desktop.
Save sonnyksimon/b051725126f71758f7e3035882ca12b6 to your computer and use it in GitHub Desktop.
install routine for recommended Common LISP configuration

Fire up a terminal:

Install Emacs (IDE):

sudo apt-get install emacs

Install SBCL (Compiler):

sudo apt-get install sbcl

Install Quicklisp (Quicklisp is a library manager for Common Lisp.)

This is done by copy-and-pasting all bold commands in the grey box here: https://www.quicklisp.org/

Install SLIME by using Quicklisp: In the terminal run SBCL:

sbcl

(ql:quickload "quicklisp-slime-helper")

(quit)

SBCL will warn you about having to edit your ~/.emacs file. Do not ignore it

Now inside Emacs to start SLIME type:

M-x slime

Which is Alt+x slime.

Now you're ready to play with LISP.

(https://askubuntu.com/questions/670304/what-is-the-install-routine-for-common-lisp-slime-sbcl-quicklisp-on-ubuntu)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment