klang <karstenl...@gmail.com> writes: > laprepl starts up with the following error and localhost:8080 does not > respond > > kl...@feersum:~/projects/labrepl$ script/repl > Clojure 1.2.0-master-SNAPSHOT > java.lang.ExceptionInInitializerError (control.clj:9)
Looks like labrepl is not locked to a particular version of Clojure and so is using the very latest bleeding edge. Seems to be a conflict with some of the newly added functions and compojure. Hopefully Stuart will fix this soon, but in meantime you can just use a version of Clojure that's a few days old. To do this simply: 1. Edit labrepl/project.clj. Change the version for org.clojure/clojure from "1.2.0-master-SNAPSHOT" to "1.2.0-master-20100422.180114-42" 2. Remove the jar: $ rm lib/clojure-1.2.0-* 3. Download the selected version: $ lein deps 4. Try again running the repl again: $ script/repl Hopefully that should do the trick. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en