Execution error trying to require flow-storm #48
-
Saw a video. Looks fantastic. However, I have problems firing it up. I run the command from bash as instructed: clj -Sforce -Sdeps '{:deps {com.github.jpmonettas/flow-storm-dbg {:mvn/version "3.0.216"} com.github.jpmonettas/flow-storm-inst {:mvn/version **"3.0.216"}}}' I get the repl, and from there I try to do the require: user=> (require '[flow-storm.api :as fs-api]) I get this: Any ideas? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Hey thanks @kazlibrowski ! Looks like there is something else on the classpath that is conflicting with the debugger, maybe your ~/.clojure/deps.edn is bringing something in? I have seen that conflict before and it wasn't related to flow-storm, was related to clojurescript (which flow-storm depends on) and an old version of google guava. |
Beta Was this translation helpful? Give feedback.
Hey thanks @kazlibrowski !
Looks like there is something else on the classpath that is conflicting with the debugger, maybe your ~/.clojure/deps.edn is bringing something in?
Can you paste the output of running
clj -Sforce -Sdeps '{:deps {com.github.jpmonettas/flow-storm-dbg {:mvn/version "3.0.216"} com.github.jpmonettas/flow-storm-inst {:mvn/version "3.0.216"}}}' -Stree
in the same folder it is failing?I have seen that conflict before and it wasn't related to flow-storm, was related to clojurescript (which flow-storm depends on) and an old version of google guava.