-
Notifications
You must be signed in to change notification settings - Fork 6
/
INSTALL
42 lines (27 loc) · 938 Bytes
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
SYCAMORE INSTALLATION
0. INSTALL DEPENDENCIES
=======================
* Quicklisp is strongly recommended to install dependencies
(https://www.quicklisp.org).
* Assuming you are using SBCL (recommended), you can install quicklisp
as follows:
wget https://beta.quicklisp.org/quicklisp.lisp
sbcl --load quicklisp.lisp \
--eval '(quicklisp-quickstart:install)' \
--eval '(ql:add-to-init-file)' \
--eval '(quit)'
1. INSTALL SYCAMORE
===================
Next, create the symlink for ASDF
(https://common-lisp.net/project/asdf/) to find the sycamore source
files:
mkdir --parents ~/.local/share/common-lisp/source/
ln -s $(pwd)/src/sycamore.asd ~/.local/share/common-lisp/source/
3. LOAD SYCAMORE
================
To directly load and use Sycamore, run either of the following from
the Lisp REPL:
* Via quicklisp:
(ql:quickload :sycamore)
* Otherwise:
(require :sycamore)