Reputation: 511
I'm trying to install common lisp on an Ubuntu system with no success so far . I'm newbie in emacs and linux . I tried using lispbox by downloading the tar ball and running sh lispbox.sh command but the shell reports Bad substitution error . What I need is step-by-step instruction on how to get common lisp running with emacs so that I can start programming .
Upvotes: 2
Views: 481
Reputation: 10128
go to https://portacle.github.io/ (a newer lispbox-like ready-to-use emacs/SLIME-sbcl-quicklisp system).
download and install it and start it following instructions there.
For ubuntu 64 bit:
wget https://github.com/portacle/portacle/releases/download/1.2b/lin-portacle.tar.xz
tar xJf lin-portacle.tar.xz
cd portacle
./portacle.run
# enjoy :)
Minimal set of commands needed to program common lisp in SLIME by me
Upvotes: 0
Reputation: 51561
sbcl --load "quicklisp.lisp"
.(quicklisp-quickstart:install)
.(ql:add-to-init-file)
(press Enter to confirm).(ql:quickload "quicklisp-slime-helper")
. This will create a file that you can load in your .emacs
to setup Slime.Now you can open your Emacs, do M-x slime
and hack away. Be sure to read the documentation for Quicklisp and Slime.
Upvotes: 6