Last active
June 20, 2019 10:09
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; 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 from commandline: | |
./portacle.run | |
;; portacle opens and installs slime etc. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment