Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOC: add note on enabling panel widget on Jupyter Lab #3029

Merged
merged 1 commit into from
Jan 3, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions doc/FAQ.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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?**

Expand Down