vseloved / cl-nlp

Common Lisp NLP toolset
Other
219 stars 28 forks source link

Installation issue #3

Closed maheshcr closed 11 years ago

maheshcr commented 11 years ago

During installation of cl-nlp, the process fails at this step...have cut out previous status messages, retaining immediate section.

; Loading "cl-nlp" [package nlp.util]................................ [package nlp.core]................................ [package nlp.corpora]............................. [package nlp.tagging]............................. [package nlp.parsing]............................. [package nlp.generation].......................... [package nlp-user]...... debugger invoked on a SB-INT:SIMPLE-FILE-ERROR: failed to find the TRUENAME of /Users/maheshcr/tools/cl-nlp/src/core/general.lisp: No such file or directory

Could you please help?

vseloved commented 11 years ago

Sorry, forgot to add the file. Fixed.

maheshcr commented 11 years ago

Thanks @vseloved for attacking this so quickly.

One typo trips compilation, in the file cond-freq-dist.lisp. right at the beginning for :documentation. I fixed that locally and tried compiling..now I get wild pathname conversion issue.

;;; Checking for wide character support... WARNING: Lisp implementation doesn't use UTF-16, but accepts surrogate code points. yes, using code points. .. ;;; Checking for wide character support... WARNING: Lisp implementation doesn't use UTF-16, but accepts surrogate code points. yes, using code points. ;;; Building Closure with CHARACTER RUNES ................ debugger invoked on a SIMPLE-ERROR: Can't reliably convert wild pathnames.

Any ideas? Am on a Mac OSX Lion and SBCL. Following instructions on your blog post on installing this.

vseloved commented 11 years ago

Thanks, fixed the typo. As for wild pathname conversion, I just ignore the warning (use ACCEPT restart). It, actually, seems to be just an over-insurance on part of ASDF. Anyway, no problem is manifested on Linux (maybe, on Windows there is, but I don't target to support WIndows for now).