Hi I'm trying to use the Breeze library for Scala but keep running into this error:
[error] (run-main) java.lang.ExceptionInInitializerError: unable to load from [netlib-native_system-win-x86_64.dll]
for some reasone that dll won't load when running my code. I'm using SBT, here is my build.st
name := "BreezeTest"
version := "1.0"
scalaVersion := "2.10.3"
libraryDependencies ++= Seq(
"org.scalanlp" % "breeze_2.10" % "0.5.2",
"org.scalanlp" % "breeze-viz_2.10" % "0.5.2"
)
Has anyone else had similar problems or know what might be causing this?
Thanks.