Clojure 框:类路径
我在 Windows 7 上被第 37 页的“Clojure 编程”困住了 机器。将“examples”目录下载到“C:/clojure”后,我 键入:
user> (require 'examples.introduction)
我得到了
; Evaluation aborted.
java.io.FileNotFoundException: Could not locate examples/
introduction__init.class or examples/introduction.clj on classpath:
(NO_SOURCE_FILE:0)
我的 .emacs 文件如下所示:
(setq swank-clojure-extra-classpaths
(list "C:/Clojure"))
C:/Clojure 中的文件在那里(我三次检查)
任何帮助将不胜感激。
I'm stuck with "Programming Clojure" on page 37 on a Windows 7
machine. After downloading the "examples" dir into "C:/clojure", I
typed:
user> (require 'examples.introduction)
and I got
; Evaluation aborted.
java.io.FileNotFoundException: Could not locate examples/
introduction__init.class or examples/introduction.clj on classpath:
(NO_SOURCE_FILE:0)
My .emacs file looks like this:
(setq swank-clojure-extra-classpaths
(list "C:/Clojure"))
The files in C:/Clojure are there (I triple checked)
Any help will be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题解决了! .emacs 文件应该包含这一行 - 注意没有“s”的“classpath”):
感谢 Shawn Hoover 通过电子邮件给我这个答案。 (并感谢其他人的提示!)
Problem solved! The .emacs file should contain this line - watch out for "classpath" without the "s"):
Thanks to Shawn Hoover for giving me this answer via email. (And thanks to everybody else for your hints!)
尝试
Try