You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@zeppelin.apache.org by bear gan <be...@hotmail.com> on 2016/01/20 08:46:39 UTC

error: object jblas is not a member of package org

How to solve this problem?
////////////////////////////////////////////////////////////////////////////////
import org.jblas.DoubleMatrix
<console>:21: error: object jblas is not a member of package org
       import org.jblas.DoubleMatrix
////////////////////////////////////////////////////////////////////////////////




Re: error: object jblas is not a member of package org

Posted by Mina Lee <mi...@apache.org>.
Hi,

have you tried to load jblas library using %dep interpreter?

For example, you can try to run below:
```
%dep
z.load("org.scalanlp:jblas:1.2.1")
```

And then run
`import org.jblas.DoubleMatrix` in next paragraph.

If you want to know another way to load external library, please check
"Dependency
Management" section in
https://zeppelin.incubator.apache.org/docs/0.6.0-incubating-SNAPSHOT/interpreter/spark.html


Hope this helps.

On Tue, Jan 19, 2016 at 11:46 PM, bear gan <be...@hotmail.com> wrote:

>
>
> How to solve this problem?
>
>
> ////////////////////////////////////////////////////////////////////////////////
>
> import org.jblas.DoubleMatrix
>
> <console>:21: error: object jblas is not a member of package org
>
>        import org.jblas.DoubleMatrix
>
>
> ////////////////////////////////////////////////////////////////////////////////
>
>
>
>
>
>
>