From d53b842255b618b4937348cc6d0f84988386bd84 Mon Sep 17 00:00:00 2001 From: Ray Bell Date: Mon, 3 Jan 2022 09:38:38 -0500 Subject: [PATCH] DOC: add note on enabling panel widget on Jupyter Lab (#3029) --- doc/FAQ.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/FAQ.rst b/doc/FAQ.rst index a542d517dd..5cac87e074 100644 --- a/doc/FAQ.rst +++ b/doc/FAQ.rst @@ -42,6 +42,9 @@ Conversely, what Panel adds on top of Bokeh is full bidirectional communication **A:** This error usually means that you forgot to run panel.extension() in a notebook context to set up the code for communicating between JavaScript and Python. It's easy to get confused and think you don't need that line, because notebooks will often work fine as long as *some* notebook somewhere in your Jupyter session has run the command, but the only reliable way to make the communication channels available is to make sure *every* notebook includes this command. +**Q: How do I enable the panel widget on Jupyter Lab?** + +**A:** Run `jupyter serverextension enable panel.io.jupyter_server_extension`. **Q: Why is my object being shown using the wrong type of pane?**