问题描述
是否有任何易于安装的,良好的,跨平台(至少是SBCL和CLISP)的GUI库?
Are there any good, cross platform (SBCL and CLISP at the very least) easy to install GUI libraries?
推荐答案
Ltk 相当流行,非常便携并且通过Tk文档进行了充分的文档记录.在SBCL上进行安装很容易:
Ltk is quite popular, very portable, and reasonably well documented through the Tk docs. Installation on SBCL is as easy as saying:
(require :asdf-install)
(asdf-install:install :ltk)
还有 Cells-Gtk ,据报道它非常有用,但可能由于依赖于细胞,因此学习曲线略陡.
There's also Cells-Gtk, which is reported to be quite usable but may have a slightly steeper learning curve because of its reliance on Cells.
请注意,ASDF-INSTALL与SBCL仅集成了 .从其他Lisp实现中安装库可能会更困难. (就我个人而言,我总是从SBCL中安装我的库,然后在所有实现中使用它们.)很抱歉可能造成的任何混乱.
Note that ASDF-INSTALL is integrated this well with SBCL only. Installing libraries from within other Lisp implementations may prove harder. (Personally, I always install my libraries from within SBCL and then use them from all implementations.) Sorry about any confusion this may have caused.
这篇关于是否有用于Common Lisp的任何易于安装的高级GUI库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!