Since updating my linux kernel to 6.6.6 I’m not getting output from hvplot with bokeh or plotly backends in jupyter unless I refresh the page!
ALL software version info
bokeh==3.3.2
holoviews==1.18.1
hvplot==0.9.0
jupyterlab==4.0.9
jupyterlab-widgets==3.0.9
jupyterlab_pygments==0.3.0
jupyterlab_server==2.25.2
panel==1.3.6
Python 3.10.12
Linux Kernel: 6.6.6-76060606-generic
Description of expected behavior and the observed behavior
Expecting hvplot to work in jupyter…
Complete, minimal, self-contained example code that reproduces the issue
import pandas as pd
import hvplot.pandas
import numpy as np
df = pd.DataFrame({'x':range(100), 'y': np.linspace(0,100,100)})
df.hvplot.line(x='x',y='y')
Stack traceback and/or browser JavaScript console output
In the web console in jupyter:
TypeError: Bokeh is undefined
Panel: ERROR: Unable to run Panel code because Bokeh or Panel library is missing
Screenshots or screencasts of the bug in action
No output:
However, if I refresh the web page on jupyter then I now see output:
Documented here: No output in jupyter. · Issue #1232 · holoviz/hvplot · GitHub
But the above hasn’t gotten a response in a whole week. I know it’s around the holidays, but this is a pretty serious bug.