Hi,
I have started my spark exploration in intellij IDEA local model and want to focus on MLlib part. but when I put some example codes in IDEA, It can not recognize mllib package, just loos like that: > > import org.apache.spark.SparkContext >import org.apache.spark.mllib.recommendation.ALS > I hava configured the breeze in build.sbt file and also install the mingw gcc & gfortran lib. Here is my build.sbt: >>>> build.sbt <<<< name := "SparkMLlibLocal" version := "1.0" resolvers += "Ooyala Bintray" at "http://dl.bintray.com/ooyala/maven" resolvers += "Akka Repository" at "http://repo.akka.io/releases/" libraryDependencies += "ooyala.cnd" % "job-server" % "0.3.1" % "provided" libraryDependencies += "com.github.fommil.netlib" % "all" % "1.1.2" libraryDependencies += "org.apache.spark" %% "spark-core" % "1.0.0" libraryDependencies ++= Seq( "org.scalanlp" %% "breeze" % "0.8.1", "org.scalanlp" %% "breeze-natives" % "0.8.1" ) resolvers ++= Seq( "Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/", "Sonatype Releases" at "https://oss.sonatype.org/content/repositories/releases/" ) scalaVersion := "2.10.3" >>>> End <<<< Is there anything I missed? BR Kitaev