Skip to content

Instantly share code, notes, and snippets.

@lisp-is-the-future
Last active June 20, 2019 10:09
Show Gist options
  • Save lisp-is-the-future/c38133ee0e4602d83ebd16bc5d0eb23b to your computer and use it in GitHub Desktop.
Save lisp-is-the-future/c38133ee0e4602d83ebd16bc5d0eb23b to your computer and use it in GitHub Desktop.
Get started with common lisp now! (quick set up in ubuntu; < 5 min)
;; source: https://lispmethods.com/development-environment.html
;; quickest way to get started: download and extract `portacle`
;; (cave: This works ONLY for 64-bit! In 32-bit it doesn't work!(
;; it has:
;; - emacs editor with slime modus for cl with slime mode *for usage see gist:
;; https://gist.github.com/lisp-is-the-future/b1cdefe877fbb5f61bbb4b020618a757
;; - sbcl most optimal lisp implementation
;; - quicklisp
;; - git
wget https://github.com/portacle/portacle/releases/download/1.3/lin-portacle.tar.xz
tar xfv lin-portacle.tar.xz
;; it creates folder `portacle`
cd portacle
;; to start, either doubleclick `portacle.desktop` which might be presented as `Portacle`
;; or type in commandline:
./portacle.run
;; portacle opens and installs slime etc. and starts.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment