update docs to avoid slime issues

This commit is contained in:
David Botton 2024-05-17 10:58:33 -04:00
parent e73c5ea500
commit 438e7ede6f
4 changed files with 46 additions and 70 deletions

15
LINUX.md vendored
View file

@ -18,22 +18,13 @@ sbcl --no-sysinit --no-userinit --load /tmp/ql.lisp \
3. Run SBCL and install the UltraLisp distro for recent software for quicklisp:
```
(ql-dist:install-dist "http://dist.ultralisp.org/"
:prompt nil)
(ql:update-all-dists) ; run newest updates
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 either with:
4. Install and run CLOG Builder for a rich GUI Lisp IDE with:
```
(ql:quickload :clog/tools)
(clog-tools:clog-builder)
```
or at the command line:
```
run-builder
sbcl --eval '(ql:quickload :clog/tools)' --eval '(clog-tools:clog-builder)'
```
- [Learn about CLOG](README.md)