0
*import panel as pn
file_input = pn.widgets.FileInput()
display(pn.panel(file_input))*

enter image description here

I also tried adding : pn.extension()
But got the following error: enter image description here

EXPECTING : enter image description here

vvs
  • 1
  • 1
  • Please read [Why should I not upload images of code/data/errors?](https://meta.stackoverflow.com/q/285551/354577). Instead, format code as a [code block]. The easiest way to do this is to paste the code as text directly into your question, then select it and click the code block button. – ChrisGPT was on strike Apr 23 '23 at 17:46

1 Answers1

0

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)

Curious
  • 383
  • 3
  • 13