尝试在 Mac OS X 上通过 ASDF 加载 trivial-shell
我正在尝试在 Mac OS X 上加载 trivial-shell 。
当我执行以下命令:
(asdf:oos 'asdf:load-op :trivial-shell)
我收到以下错误:
decoding error on stream
#<SB-SYS:FD-STREAM for "file /Users/paul/lispsystems/trivial-shell.asd"
{129D4569}>
(:EXTERNAL-FORMAT :UTF-8):
the octet sequence (180) cannot be decoded.
[Condition of type SB-INT:STREAM-DECODING-ERROR]
任何人都可以告诉我我在这里做错了什么吗?
I'm trying to load trivial-shell on Mac OS X.
When I execute the following command:
(asdf:oos 'asdf:load-op :trivial-shell)
I get the following error:
decoding error on stream
#<SB-SYS:FD-STREAM for "file /Users/paul/lispsystems/trivial-shell.asd"
{129D4569}>
(:EXTERNAL-FORMAT :UTF-8):
the octet sequence (180) cannot be decoded.
[Condition of type SB-INT:STREAM-DECODING-ERROR]
Can anyone tell me what I'm doing wrong here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
代码 180 对应于 ACUTE_ACCENT。我在我的系统上的 trivial-shell.asd 中没有看到类似的内容,并且该项目在 SBCL 中加载良好。 .asd 文件的 md5 总和为
934952bf4854126a1d6fca2d33baffa2
。你的不一样吗?Code 180 corresponds to ACUTE_ACCENT. I don't see anything like that in trivial-shell.asd on my system, and the project loads fine in SBCL. The md5 sum of the .asd file is
934952bf4854126a1d6fca2d33baffa2
. Is yours different?我在 ccl 上使用 Quicklisp (http://www.quicklisp.org/) 加载了这个包;不确定 Quicklisp 是否会使用 sbcl 加载它,但可能值得一试。
I loaded this package with quicklisp (http://www.quicklisp.org/) on ccl; not sure quicklisp will load it using sbcl, but it might be worth a shot.