我正在解决 Clojure Workshop 中的示例。我创建了一个文件夹,在该文件夹中包含了以下 project.clj
文件。
(defproject learncsv "1.0.0-SNAPSHOT"
:dependencies [[org.clojure/data.csv "1.0.0"]
[semantic-csv "0.2.1-alpha1"]])
然后,我进入终端并输入
lein repl
我收到了以下错误
OpenJDK 64-Bit Server VM warning: Options -Xverify:none and -noverify were deprecated
in JDK 13 and will likely be removed in a future release.
As of 2.8.2, the repl task is incompatible with Clojure versions older than 1.7.0.
You can downgrade to 2.8.1 or use `lein trampoline run -m clojure.main` for a simpler
fallback repl.
Subprocess failed (exit code: 1)
我对 Clojure 完全是个新手。从未包含任何依赖项。非常感谢任何帮助。
编辑:如果在没有 project.clj 的文件夹中运行 lein repl
,则可以正常运行。并且显示我的 Clojure 版本为 1.10。所以我不确定为什么错误似乎表明我使用的是低于 1.7.0 版本的 Clojure
谢谢。