mirror of
https://github.com/rabbibotton/clog.git
synced 2026-02-02 05:44:32 -08:00
31 lines
945 B
Markdown
Vendored
31 lines
945 B
Markdown
Vendored
## Installing Common Lisp + CLOG Builder on Linux (all platforms)
|
|
|
|
(For emacs based Linux install - https://lisp-lang.org/learn/getting-started/)
|
|
|
|
1. Install sbcl, sqlite and openssh (modify for your OS)
|
|
|
|
sudo apt-get install sbcl openssh-client libsqlite3-dev
|
|
|
|
2. Install QuickLisp
|
|
```
|
|
curl -o /tmp/ql.lisp http://beta.quicklisp.org/quicklisp.lisp
|
|
sbcl --no-sysinit --no-userinit --load /tmp/ql.lisp \
|
|
--eval '(quicklisp-quickstart:install :path "~/.quicklisp")' \
|
|
--eval '(ql:add-to-init-file)' \
|
|
--quit
|
|
```
|
|
|
|
3. Run SBCL and install the UltraLisp distro for recent software for quicklisp:
|
|
|
|
```
|
|
sbcl --eval '(ql-dist:install-dist "http://dist.ultralisp.org/" :prompt nil)' --eval '(ql:update-all-dists)'
|
|
```
|
|
|
|
4. Install and run CLOG Builder for a rich GUI Lisp IDE with:
|
|
|
|
```
|
|
sbcl --eval '(ql:quickload :clog/tools)' --eval '(clog-tools:clog-builder)'
|
|
```
|
|
|
|
- [Learn about CLOG](README.md)
|
|
- [Learn Common-Lisp](LEARN.md)
|