Are extensions expected to work? #170
-
I'm trying to display a ...and I get a bunch of js errors: |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 11 replies
-
Thanks @dhirschfeld for the report. Widgets and existing JupyterLab extensions are supported. So if The console errors seem to be coming from other extensions that expect to find tokens only exposed in JupyterLab. Usually it's a better practice to not |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
An alternative answer which maybe @jtpio can clarify is from the README: So "No, only some federated extensions are supported". |
Beta Was this translation helpful? Give feedback.
Thanks @dhirschfeld for the report.
Widgets and existing JupyterLab extensions are supported. So if
perspective
behaves like a normal widget then it should work.The console errors seem to be coming from other extensions that expect to find tokens only exposed in JupyterLab. Usually it's a better practice to not
require
these tokens in extensions, but instead make themoptional
so they don't fail to activate in alternative lab distribution like RetroLab (retro doesn't have a status bar or layout restorer).