Windows 7 上的 Scala 2.8.0 问题
我昨晚安装了 scala 2.8.0,但运行它时似乎遇到了一些问题。如果我在命令提示符下输入 scala,它会显示以下内容:
> scala
Exception in thread "main" java.lang.NoSuchMethodError: scala.collection.mutable.ListBuffer.toList()Lscala/collection/immutable/List;
at scala.collection.TraversableOnce$class.toList(TraversableOnce.scala:399)
at scala.collection.mutable.ArrayOps.toList(ArrayOps.scala:34)
at scala.tools.nsc.MainGenericRunner$.main(MainGenericRunner.scala:33)
at scala.tools.nsc.MainGenericRunner.main(MainGenericRunner.scala)
有人有任何想法吗?我使用的是 Windows 7 Professional,使用 Oracle JRE 1.6.0_21
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您是否将
SCALA_HOME
环境变量设置为指向正确的目录?Did you set the
SCALA_HOME
environment variable to point to the correct directory?您安装了旧版本吗?如果它仍然在您的路径上,那么它可能会导致问题...
编辑
您可以粘贴 PATH 和 CLASSPATH 环境变量的内容吗?如果馅饼或馅饼较大的话,也许可以使用它们。
如果可能的话,您还应该更新到 Java 1.6.0_22,因为更新 21 中存在此错误: https://bugs.java.com/bugdatabase/view_bug?bug_id=6969236
Did you have an older version installed? If that's still on your path then it may be causing problems...
EDIT
Can you paste the contents of your PATH and CLASSPATH environment variables? Perhaps using pastie or pastebin if they're on the large side.
You should also update to Java 1.6.0_22 if at all possible, due to this bug which was present in update 21: https://bugs.java.com/bugdatabase/view_bug?bug_id=6969236
事实证明,出现这个问题是因为我将 sbt-launch.jar 放在了 scala 安装的 lib 目录中。一旦我将它移到另一个目录中,scala 就可以正常工作了。
Turns out this problem occurred because I put the sbt-launch.jar in the lib directory for my scala installation. Once I moved it into another directory scala worked fine.