*import panel as pn
file_input = pn.widgets.FileInput()
display(pn.panel(file_input))*
I also tried adding :
pn.extension()
But got the following error:
enter image description here
EXPECTING : enter image description here
*import panel as pn
file_input = pn.widgets.FileInput()
display(pn.panel(file_input))*
I also tried adding :
pn.extension()
But got the following error:
enter image description here
EXPECTING : enter image description here
Have a look at Mr. Mark's setup example notice you have to have a couple of extra modules installed to ensure Panel works with VsCode, namely jupyter_bokeh
. There are other guides as well (official one for example)