私は「Practical Common Lisp」(優れた本) の第 26 章を読んでいます。https://github.com/Apress/practical-common-lispからダウンロードして、これに到達しようとしています:
CL-USER> (defpackage :com.gigamonkeys.web
(:use :cl :net.aserve :com.gigamonkeys.html))
このエラーが発生します:
(There is no package named "NET.ASERVE" .
[Condition of type CCL::NO-SUCH-PACKAGE])
https://github.com/franzinc/aserve.git のクローンを作成した後、次のコマンド を実行しました。
CL-USER> (asdf:oos 'asdf:load-op :aserve)
しかし、エラーが発生しました:
There is no package named "EXCL" .
[Condition of type CCL::NO-SUCH-PACKAGE]
パッケージ EXCL が見つからなかったので、portableaserve をインストールして実行しました。
CL-USER> (load "~/GitHub/portableaserve/INSTALL.lisp")
しかし、再び得ました:
there is no package named "EXCL" .
[Condition of type CCL::NO-SUCH-PACKAGE]
上記の defpackage コマンドを実行するために、excl を含む allegroserve を Mac の lispbox-0.7 内にインストールする方法を誰かが知っていますか?