bokeh / jupyter_bokeh

An extension for rendering Bokeh content in JupyterLab notebooks
BSD 3-Clause "New" or "Revised" License
253 stars 48 forks source link

Not working in Voila #106

Closed philippjfr closed 4 years ago

philippjfr commented 4 years ago

So I haven't dug very deep yet but even the simplest example using the BokehModel not seem to render in Voila:

from bokeh.plotting import figure, Row
from jupyter_bokeh import BokehModel

p = figure()
p.line([1, 2, 3], [1, 2, 3])

model = BokehModel(model=p)
model
voila notebook.ipynb
Screen Shot 2020-07-09 at 12 09 28 AM

bokeh 2.1.1 jupyter_bokeh 2.0.2 voila 0.1.21