我对 SBT、Breeze 和 IntelliJ 非常陌生,尽管我对 Scala 有很好的掌握,并且我正在尝试安装 Breeze 库,我认为它是受管理的。
我做了什么:
我按照此页面上的说明将此脚本添加到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
,我在“项目结构”中找不到任何提到微风的地方。它也不在项目的 lib 目录中。
我错过了一步吗?