From anand.prabhakar.patil at gmail.com Wed Sep 24 03:40:02 2008 From: anand.prabhakar.patil at gmail.com (Anand Patil) Date: Tue, 23 Sep 2008 20:40:02 -0700 Subject: [clpython-devel] Installation problems Message-ID: <2bc7a5a50809232040v1b22b413r38859e3cfe59e1a5@mail.gmail.com> Hello, I'm trying to follow the installation instructions at http://common-lisp.net/project/clpython/ but it doesn't seem to be working. I know absolutely nothing about Lisp, so some more detailed step-by-step instructions would be very helpful. Here's what happens: * (require 'asdf) ("ASDF") * (asdf:operate 'asdf:load-op :clpython) ; loading system definition from /Users/anand/clpython.asd into ; # ; registering # as CLPYTHON.PACKAGE ; registering # as CLPYTHON.DEPEND ; registering # as CLPYTHON.PARSER ; registering # as CLPYTHON.CORE ; registering # as CLPYTHON.LIB ; registering # as CLPYTHON.APP.REPL ; registering # as ; CLPYTHON.APP.PROFILER ; registering # as CLPYTHON.APP ; registering # as CLPYTHON debugger invoked on a ASDF:MISSING-DEPENDENCY: component :CLOSER-MOP not found, required by # Type HELP for debugger help, or (SB-EXT:QUIT) to exit from SBCL. restarts (invokable by number or by possibly-abbreviated name): 0: [ABORT] Exit debugger, returning to top level. ((LABELS ASDF::DO-ONE-DEP) ASDF:COMPILE-OP :CLOSER-MOP NIL) 0] Thanks in advance, Anand -------------- next part -------------- An HTML attachment was scrubbed... URL: From metawilm at gmail.com Wed Sep 24 08:21:39 2008 From: metawilm at gmail.com (Willem Broekema) Date: Wed, 24 Sep 2008 10:21:39 +0200 Subject: [clpython-devel] Installation problems In-Reply-To: <2bc7a5a50809232040v1b22b413r38859e3cfe59e1a5@mail.gmail.com> References: <2bc7a5a50809232040v1b22b413r38859e3cfe59e1a5@mail.gmail.com> Message-ID: Hi Anand, On Wed, Sep 24, 2008 at 5:40 AM, Anand Patil wrote: > debugger invoked on a ASDF:MISSING-DEPENDENCY: > component :CLOSER-MOP not found, required by > # "Closer to MOP" is one of the two dependencies CLPython has, the other one being "ptester". You can find them at: http://common-lisp.net/project/closer/closer-mop.html http://www.cliki.net/ptester The system definitions are in files closer-mop.asd and ptester.asd, respectively. If ASDF can find these files, it will automatically load these systems when you load CLPython. - Willem