clojure - Problems while opening the REPL -
anytime fire fresh repl same message, namely
#<filenotfoundexception java.io.filenotfoundexception: not locate test_app/core_init.class or test_app/core.cljon classpath:>
the namespace i've been using ns test-app.core
the repl still continues come , able execute code it. unsure if lead future problems, such trying work incanter or other libraries.
does project.clj
contain following line, per chance?
... :main test-app.core ...
leiningen try switch namespace before showing repl you. if cannot find it, you'll see error mentioned. now, reason cannot find topic explore, first make sure how directory structure looks like:
. |-- project.clj |-- src |-- test_app |-- core.clj
if does, guess it's time post leiningen , java versions (and ideally project.clj
) let try tackle miraculous repl. :)
edit: solution problem - if of above suggestions match case - of course either remove :main
line project file or adjust directory structure.
Comments
Post a Comment