mirror of
https://github.com/rabbibotton/clog.git
synced 2025-12-06 02:30:42 -08:00
update install docs
This commit is contained in:
parent
d748eaa263
commit
1c7782c2f6
3 changed files with 37 additions and 8 deletions
10
ANDROID-TERMUX.md
vendored
10
ANDROID-TERMUX.md
vendored
|
|
@ -60,6 +60,16 @@ Add to ~/.emacs.d/init.el
|
||||||
start emacs
|
start emacs
|
||||||
|
|
||||||
M-x slime
|
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)
|
(ql:quickload :clog)
|
||||||
```
|
```
|
||||||
|
|
|
||||||
15
MACOS.md
vendored
15
MACOS.md
vendored
|
|
@ -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
|
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
|
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)
|
(ql-dist:install-dist "http://dist.ultralisp.org/"
|
||||||
(clog:run-demo 1)
|
: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
|
Tip: If use emacs graphically, you may find it easier to set the
|
||||||
apple command key to also act as a Meta key:
|
apple command key to also act as a Meta key:
|
||||||
|
|
||||||
|
|
|
||||||
18
WINDOWS.md
vendored
18
WINDOWS.md
vendored
|
|
@ -1,5 +1,8 @@
|
||||||
## Installing Common Lisp on Windows 64bit from Scratch
|
## 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:
|
1. Download and install rho-emacs:
|
||||||
|
|
||||||
https://gchristensen.github.io/rho-emacs/
|
https://gchristensen.github.io/rho-emacs/
|
||||||
|
|
@ -73,11 +76,18 @@
|
||||||
```
|
```
|
||||||
Run Slime - M-x slime
|
Run Slime - M-x slime
|
||||||
|
|
||||||
7. Install CLOG:
|
8. Install the UltraLisp distro for recent software for quicklisp:
|
||||||
8.
|
|
||||||
```
|
```
|
||||||
(ql:quickload :clog)
|
(ql-dist:install-dist "http://dist.ultralisp.org/"
|
||||||
(clog:run-demo 1)
|
: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)
|
[Learn about CLOG](README.md)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue