scicloj / scicloj.ml-tutorials

Tutorials for scicloj.ml
Eclipse Public License 1.0
22 stars 2 forks source link

cannot start REPL in current commit (#5a2ce3d) #2

Closed daslu closed 2 years ago

daslu commented 2 years ago
$ clj
DEPRECATED: Libs must be qualified, change deps-deploy => deps-deploy/deps-deploy (/home/daslu/.gitlibs/libs/appliedsciencestudio/rdata/151e6dead06b38995f1f30b09d954a060f7a2a9c/deps.edn)
DEPRECATED: Libs must be qualified, change deps-deploy => deps-deploy/deps-deploy (/home/daslu/.gitlibs/libs/appliedsciencestudio/rdata/151e6dead06b38995f1f30b09d954a060f7a2a9c/deps.edn)
DEPRECATED: Libs must be qualified, change deps-deploy => deps-deploy/deps-deploy (/home/daslu/.gitlibs/libs/appliedsciencestudio/rdata/151e6dead06b38995f1f30b09d954a060f7a2a9c/deps.edn)
DEPRECATED: Libs must be qualified, change deps-deploy => deps-deploy/deps-deploy (/home/daslu/.gitlibs/libs/appliedsciencestudio/rdata/151e6dead06b38995f1f30b09d954a060f7a2a9c/deps.edn)
Error building classpath. The following libs must be prepared before use: [net.clojars.behrica/cluster_eval]

Commenting out the cluster_eval dependency fixes that.

behrica commented 2 years ago

You need explicitly "prepare" the dependency before starting the repl. clj -X:deps prep

see here: https://clojure.org/guides/deps_and_cli#prep_libs

I was always wondering why this can not happen automaticaly, but is like that.

daslu commented 2 years ago

Thanks!