git clone https://github.com/sionescu/iolib.git
CL-USER> (push #P"/home/***/git-db/" asdf:*central-registry*) CL-USER> (ql:quickload "iolib")
或者直接使用quicklisp安裝: html
CL-USER> (ql:quickload "iolib")
兩種安裝均出現「You need ASDF >= 3.1 to load this system correctly.」的錯誤提示,這意味着asdf版本太低。能夠經過從新編譯新版本asdf.lisp來解決。 git
下載最新版本asdf: github
git clone https://github.com/fare/asdf.git
CL-USER> (load (compile-file "/home/***/git-db/asdf/build/asdf.lisp"))從新安裝便可解決問題。
這裏有iolib的高級用法,向原做者表示敬意與感謝。 shell