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 ; #<PACKAGE "ASDF0"> ; registering #<SYSTEM :CLPYTHON.PACKAGE {11A97AD9}> as CLPYTHON.PACKAGE ; registering #<SYSTEM :CLPYTHON.DEPEND {11CB5CE1}> as CLPYTHON.DEPEND ; registering #<SYSTEM :CLPYTHON.PARSER {11E49B21}> as CLPYTHON.PARSER ; registering #<SYSTEM :CLPYTHON.CORE {11FE6E79}> as CLPYTHON.CORE ; registering #<SYSTEM :CLPYTHON.LIB {1217F4F1}> as CLPYTHON.LIB ; registering #<SYSTEM :CLPYTHON.APP.REPL {11719139}> as CLPYTHON.APP.REPL ; registering #<SYSTEM :CLPYTHON.APP.PROFILER {118C4F59}> as ; CLPYTHON.APP.PROFILER ; registering #<SYSTEM :CLPYTHON.APP {11A6FEA1}> as CLPYTHON.APP ; registering #<SYSTEM :CLPYTHON {11C05761}> as CLPYTHON
debugger invoked on a ASDF:MISSING-DEPENDENCY: component :CLOSER-MOP not found, required by #<SYSTEM "clpython.core" {122B0A71}>
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
Hi Anand,
On Wed, Sep 24, 2008 at 5:40 AM, Anand Patil anand.prabhakar.patil@gmail.com wrote:
debugger invoked on a ASDF:MISSING-DEPENDENCY: component :CLOSER-MOP not found, required by #<SYSTEM "clpython.core" {122B0A71}>
"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
clpython-devel@common-lisp.net