Open
Description
After doing pip install jupyter_bokeh
, jupyter notebook
, then running the following in a notebook cell:
from bokeh.plotting import figure
from jupyter_bokeh import BokehModel
x = [1, 2, 3, 4, 5]
y = [6, 7, 2, 4, 5]
p = figure(title="Simple line example", x_axis_label="x", y_axis_label="y")
p.line(x, y, legend_label="Temp.", line_width=2)
BokehModel(p)
I get no output and the following JS errors:
Am I doing something wrong? I have a feeling this might be related to the fact that the notebook extension config is pointing to a seemingly non-existant nbextension/static
(should it be nbextension
instead)?
jupyter_bokeh/jupyter_bokeh/__init__.py
Line 22 in 4010f6c
Metadata
Metadata
Assignees
Labels
No labels