如何在 Intellij 项目中使用 SBT libraryDependencies 安装库

How to install library with SBT libraryDependencies in an Intellij project

我对 SBT、Breeze 和 IntelliJ 还很陌生,尽管我对 Scala 有一定的了解,并且我正在尝试安装我认为是托管的 Breeze 库。

我做了什么:

我按照 this page 上的说明进行操作,并将此脚本添加到我项目中的 build.sbt 文件中:

libraryDependencies  ++= Seq(
            // other dependencies here
            "org.scalanlp" %% "breeze" % "0.10",
            // native libraries are not included by default. add this if you want them (as of 0.7)
            // native libraries greatly improve performance, but increase jar sizes.
            "org.scalanlp" %% "breeze-natives" % "0.10"
)

resolvers ++= Seq(
            // other resolvers here
            "Sonatype Releases" at "https://oss.sonatype.org/content/repositories/releases/"
)

// Scala 2.9.2 is still supported for 0.2.1, but is dropped afterwards.
scalaVersion := "2.11.1" // or 2.10.3 or later

然后我在项目目录下运行sbt update(通过终端),看到Breeze的所有片段都下载了。

然后我尝试重新运行 sbt update,但这并没有触发另一次下载。

问题:

问题是我无法通过 IntelliJ 访问库。 import breeze._ 给出了标准 Cannot resolve symbol breeze 而我在 "Project Structure." 中找不到任何关于 Breeze 的提及它也不在项目的 lib 目录中。

我是不是漏了一步?

听起来像是 IntelliJ 项目中的错误,请尝试从项目目录中删除 .idea 目录,然后使用向导将项目重新导入 IntelliJ。