where is the bokeh repo

%AddDeps io.continuum.bokeh bokeh 0.5 --transitive

does not work for me in a spark-kernel, keeps saying not found and it’s looking in the maven repo,

what repo is this project stored in jcenter? bintray?

Hi,

···

On Tue, Jun 9, 2015 at 3:48 PM, [email protected] wrote:

%AddDeps io.continuum.bokeh bokeh 0.5 --transitive

does not work for me in a spark-kernel, keeps saying not found and it’s looking in the maven repo,

what repo is this project stored in jcenter? bintray?

It’s on maven central [1], so it should work out of the box. I don’t know what %AddDeps really does, but if it doesn’t work, it may not be including scala binary version in artifact name. In sbt syntax this is “io.continuum.bokeh” %% “bokeh” % “0.5”, which boils down to “io.continuum.bokeh” % “bokeh_2.11” % “0.5” if use are on Scala 2.11. So you may want to try:

%AddDeps io.continuum.bokeh bokeh_2.11 0.5 --transitive

[1] http://search.maven.org/#search%7Cga%7C1%7Cbokeh

Mateusz

You received this message because you are subscribed to the Google Groups “Bokeh Discussion - Public” group.

To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].

To post to this group, send email to [email protected].

To view this discussion on the web visit https://groups.google.com/a/continuum.io/d/msgid/bokeh/f40db479-ef9e-4c76-8502-257e6bf3eb5d%40continuum.io.

For more options, visit https://groups.google.com/a/continuum.io/d/optout.

Sorry about the false alarm, looks like it’s because i’m running the notebook on a server at work which is behind a proxy it’s really a connection refused error.

the adddeps is kernel magic for spark-kernel on github by ibm

https://github.com/ibm-et/spark-kernel/wiki/Overview-of-Magics-for-the-Spark-Kernel

···

On Tuesday, June 9, 2015 at 11:18:20 AM UTC-4, mateusz.paprocki wrote:

Hi,

On Tue, Jun 9, 2015 at 3:48 PM, [email protected] wrote:

%AddDeps io.continuum.bokeh bokeh 0.5 --transitive

does not work for me in a spark-kernel, keeps saying not found and it’s looking in the maven repo,

what repo is this project stored in jcenter? bintray?

It’s on maven central [1], so it should work out of the box. I don’t know what %AddDeps really does, but if it doesn’t work, it may not be including scala binary version in artifact name. In sbt syntax this is “io.continuum.bokeh” %% “bokeh” % “0.5”, which boils down to “io.continuum.bokeh” % “bokeh_2.11” % “0.5” if use are on Scala 2.11. So you may want to try:

%AddDeps io.continuum.bokeh bokeh_2.11 0.5 --transitive

[1] http://search.maven.org/#search%7Cga%7C1%7Cbokeh

Mateusz

You received this message because you are subscribed to the Google Groups “Bokeh Discussion - Public” group.

To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].

To post to this group, send email to [email protected].

To view this discussion on the web visit https://groups.google.com/a/continuum.io/d/msgid/bokeh/f40db479-ef9e-4c76-8502-257e6bf3eb5d%40continuum.io.

For more options, visit https://groups.google.com/a/continuum.io/d/optout.