Looking for advice on why my Holoviews layout object isn’t showing up in my Panel-based app. First time I’ve attempted to do this.
Here’s the gist of what I’m doing:
In data_finder.py
I import my new library via import plotlib as pl
In data_finder.py
, I have class DataFinderApp
In DataFinderApp
, __init__()
includes the following:
self.plot_pane = pn.Row()
, and
app = pn.template.MaterialTemplate(title='data_finder')
, and
tabs = Tabs((...), (...), ('Data Plotting', Column(Row(...), self.plot_pane))
, and
app.main.append(tabs)
, and
app.servable()
DataFinderApp
also has a button that executes:
def build_plot(self, event):
self.multiplot = pl.MultiPlot(self.data_manager.data_dict)
self.plot_pane = pn.Row(self.multiplot.layout)
plotlib.py
includes:
...
hv.extension('bokeh')
class MultiPlot:
__init__(self, data, ...):
...
self.overlay = ...
self.layout = hv.Layout(self.overlay).cols(1)
When I click the button to “build_plot”, nothing seems to happen, and no errors are seen on the console, so I’m at a loss how to troubleshoot this.
Obviously I’m trying to get help without posting the entirety of my code, and also I’m avoiding creation of some minimum reproducible code.
Am I doing something obviously wrong, I my attempt to show this Holoviews “layout” in my Panel app?
Hoxbro
October 4, 2022, 6:49am
2
The only suggestion I can give you is to make a print statement to see if the build_plot
is called and go from there.
I don’t think there is a way to troubleshoot your problem without having some kind of MRE. Even if it is just for yourself, it is a great way to reduce the problem to its essence.
Maybe you have to call pn.extension or hv.extension only in the main python file. I saw someone who has problems with calling pn.extension in a module.
opened 04:24PM - 28 Sep 22 UTC
#### ALL software version info
https://gist.github.com/tomascsantos/6cc57c2ed39… a533788ab64bc3aca8198
panel==0.13.1
#### Description of expected behavior and the observed behavior
If the user calls pn.extension in a jupyterhub environment, things should "just work" even if they called pn.extension in a python file that was imported. OR panel should throw a reasonable error that indicates the user should NOT call pn.extension in the python file
#### Complete, minimal, self-contained example code that reproduces the issue
```python
# test.py
import panel as pn
pn.extension()
def hello():
print('hello world')
```
```python
# jupyterhub
from test import hello
import panel as pn
pn.extension()
hello()
pn.Column('hi')
```
#### Screenshots or screencasts of the bug in action


`pn.Column('hi')` has no output, which is unexpected, and there is no error thrown in any code cell, which is also frustrating.
This is a bit of a nefarious bug. You'll probably have to run this example code in an incognito tab that does not already have bokehJS loaded.
The issue is fixed when pn.extension is removed from `test.py` but one must kill the kernel, and close the browser tab, then open the tab restart the kernel and run once again
Anyway, as @Hoxbro mentioned, without a MRE is difficult to provide much more help
1 Like
@Hoxbro @nghenzi I’ll try to distill things down to an MRE. Thanks!
1 Like