clojure 中的 Lancet 是否需要任何包或 jar 文件?
《Stuart Halloway》一书中的 Programmin Clojure 谈到了《柳叶刀》,第一步是(use 'lancet),它抛出一些异常,
异常 用户=> (使用“柳叶刀”) java.io.FileNotFoundException:无法找到 lancet__init.class 或 lancet.clj 在类路径上:(NO_SOURCE_FILE:0)
是否需要任何 jar 文件或某些包才能完成此工作?
Programmin Clojure by "Stuart Halloway" book talks about Lancet, Very first step is (use 'lancet) which is throwing some Exception,
Exception
user=> (use 'lancet)
java.io.FileNotFoundException: Could not locate lancet__init.class or lancet.clj
on classpath: (NO_SOURCE_FILE:0)
Is any jar file or some package is required to make this work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要安装 lancet 才能使用 lancet。我很惊讶这本书没有提到类似的事情。无论如何,我强烈建议您使用 leiningen 代替。 Lancet 已经过时了,leiningen 是当今最流行的 clojure 构建工具。
You need lancet installed to use lancet. I'm surprised the book doesn't mention anything like that. Anyway, I would strongly recommend you use leiningen instead. Lancet is out of date and leiningen is the most popular build tool for clojure these days.