The code that accompanies the book Practical Common Lisp includes asdf files. How do I use Quicklisp to load this code?
Asked
Active
Viewed 234 times
1 Answers
8
- Copy contents of http://www.gigamonkeys.com/book/practicals-1.0.3.tar.gz to
~/quicklisp/local-projects/
- Call
(ql:register-local-projects)
at the REPL - Load code from desired chapter (only Chapter 25 tested)
CL-USER> (ql:quickload "id3v2") To load "id3v2": Load 1 ASDF system: id3v2 ; Loading "id3v2" [package com.gigamonkeys.macro-utilities]......... [package com.gigamonkeys.binary-data]............. [package com.gigamonkeys.pathnames]............... [package com.gigamonkeys.id3v2]............... ("id3v2") CL-USER> (in-package "COM.GIGAMONKEYS.ID3V2") ID3V2> (show-tag-header "/path/to/xyz.mp3") ...

sigjuice
- 28,661
- 12
- 68
- 93