Hi,
when trying to install LTK I get an error with (use-package 'ltk)
The (compile-file "ltk") works fine. The (load "ltk") works also fine. But (use-package 'ltk) produces the following error: (USE-PACKAGE (#<PACKAGE LTK>) #1=#<PACKAGE COMMON-LISP-USER>): 1 name conflicts remain Which symbol with name "VALUE" should be accessible in #1#? [Condition of type SYSTEM::SIMPLE-PACKAGE-ERROR]
I don't understand it, because I haven't worked with packages yet.
Any ideas?
-- Met vriendelijke groet / with kind regards, Arie van Wingerden
On 1/19/06, Arie van Wingerden xapwing@gmail.com wrote:
Hi,
when trying to install LTK I get an error with (use-package 'ltk)
Some lisps (CLISP, for example) put symbols that conflict with Ltk in the CL-USER package. The solution is to get a little bit more of an introduction to the package system, and make an LTK-USER package as follows:
(compile-file "ltk") (load "ltk") (defpackage :ltk-user (:use :common-lisp :ltk)) (in-package :ltk-user)
Now you should be able to proceed as in the examples.