update install docs

This commit is contained in:
David Botton 2024-05-10 05:07:06 -04:00
parent d748eaa263
commit 1c7782c2f6
3 changed files with 37 additions and 8 deletions

10
ANDROID-TERMUX.md vendored
View file

@ -60,6 +60,16 @@ Add to ~/.emacs.d/init.el
start emacs
M-x slime
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
```
Of course install CLOG an CLOG Builder for a rich GUI Lisp IDE
```
(ql:quickload :clog)
```

15
MACOS.md vendored
View file

@ -41,12 +41,21 @@ sbcl --eval '(ql:quickload :quicklisp-slime-helper)' --quit
8. You can now start emacs graphically or if did option 2 from terminal
using emacs (and if desire terminal version use emacs -nw) and then use M-x slime
9. Install using slime CLOG:
9. Install the UltraLisp distro for recent software for quicklisp:
```
(ql:quickload :clog)
(clog:run-demo 1)
(ql-dist:install-dist "http://dist.ultralisp.org/"
:prompt nil)
(ql:update-all-dists) ; run newest updates
```
10. Of course install CLOG an CLOG Builder for a rich GUI Lisp IDE
```
(ql:quickload :clog/tools)
(clog-tools:clog-builder)
```
Tip: If use emacs graphically, you may find it easier to set the
apple command key to also act as a Meta key:

18
WINDOWS.md vendored
View file

@ -1,5 +1,8 @@
## Installing Common Lisp on Windows 64bit from Scratch
(For a simple non-emacs install see:
https://github.com/rabbibotton/clog-win64-ez/releases)
1. Download and install rho-emacs:
https://gchristensen.github.io/rho-emacs/
@ -73,11 +76,18 @@
```
Run Slime - M-x slime
7. Install CLOG:
8.
8. Install the UltraLisp distro for recent software for quicklisp:
```
(ql:quickload :clog)
(clog:run-demo 1)
(ql-dist:install-dist "http://dist.ultralisp.org/"
:prompt nil)
(ql:update-all-dists) ; run newest updates
```
9. Of course install CLOG an CLOG Builder for a rich GUI Lisp IDE
```
(ql:quickload :clog/tools)
(clog-tools:clog-builder)
```
[Learn about CLOG](README.md)