scalala / Scalala

Scalala has been superseded by dlwh/breeze. Scalala is a high performance numeric linear algebra library for Scala, with rich Matlab-like operators on vectors and matrices; a library of numerical routines; support for plotting.
http://groups.google.com/group/scalala
GNU Lesser General Public License v2.1
298 stars 30 forks source link

Missing dependencies: jfree#jcommon, netlib#netlib-java, netlib#arpack-combo #28

Closed yang closed 12 years ago

yang commented 13 years ago

I'm getting these errors from sbt:

[warn]  module not found: jfree#jcommon;1.0.16
[warn]  module not found: netlib#netlib-java;0.9.3
[warn]  module not found: netlib#arpack-combo;0.1

I tried Googling for the first one and found a random repo that had it, and while I could do the same for the remaining ones, I was hoping there's a better way or something I'm missing.

yang commented 13 years ago

Found the artifacts in scalanlp.org. Suggest adding this to https://github.com/scalala/Scalala/wiki/QuickStart, since I thought the documentation on http://www.scalanlp.org/?page_id=6 was out of date given that the repo there only hosts scalala up to 0.3.

bwanab commented 12 years ago

Scalala is great! But, I had the same problem as Yang. Here is my minimal project file to get scalala working (this is for sbt 0.7.4):

val scalalatools = "Scala Tools Snapshots" at "http://scala-tools.org/repo-snapshots/" val scalanlp = "ScalaNLP" at "http://repo.scalanlp.org/repo/" override def libraryDependencies = Set( "org.scalala" %% "scalala" % "1.0.0.RC2-SNAPSHOT" ) ++ super.libraryDependencies

dramage commented 12 years ago

Thanks, folks. I updated the QuickStart accordingly.