0

我想在我的freebsd盒子上安装hunchentoot,但是quicklisp报错:

(ql:quickload "hunchentoot")
To load "hunchentoot":
 Load 3 ASDF systems:
 rfc2388 trivial-backtrace usocket
Install 15 Quicklisp releases:
alexandria babel bordeaux-threads cffi chunga 
cl+ssl cl-base64 cl-fad cl-ppcre flexi-streams 
hunchentoot md5 trivial-features trivial-garbage 
trivial-gray-streams

* - 标题缺少魔法值 1F、8B(改为 3C、21)!以下重启可用: ABORT :R1 放弃“hunchentoot”

中止中断 1 [2]> :i

: 标准对象

类型:QL-GUNZIPPER::GZIP-DECOMPRESSION-ERROR 0 [$FORMAT-CONTROL]:“标头缺少魔法值 ~2,'0X,~2,'0X (得到 ~2,'0X,~2,'0X )!” 1 [$FORMAT-ARGUMENTS]: (31 139 60 33) :R2 在此处中止主循环输入代码

如何解决?谢谢!

4

2 回答 2

2

看起来 Quicklisp 下载的文件无效;它们不是从预期的 GZIP 文件头开始的。相反,它们以<!...看起来非常像 HTML 的开头。您的网络中是否有代理?如果是这样,试试这个:

(setf (ql-config:config-value "proxy-url") "http://your.proxy.url:xyz/")
于 2011-09-23T13:09:33.507 回答
-1

“hunchentoot”现在可以安装在我的archlinux机器上。但无法安装“uffi”:

(ql:quickload "uffi") 
To load " uffi":
Install 1 Quicklisp release:
uffi
; Fetching #<URL "http://beta.quicklisp.org/archive/uffi/2010-11-07/uffi-20101107-git.tgz">
; 175.27KB
==================================================
179,479 bytes in 10.53 seconds (16.64KB/sec)
; Loading "uffi"

*** - Component "uffi" not found

我不明白为什么 quicklisp 有这么多问题!

于 2011-09-25T03:45:34.820 回答