jupyterlab-plotly extension in ports needed?

I install pkg py311-jupyter and in jupyterlab plotly not shown. In extension list i don't have jupyter-plotly extension. Someone now how to fix?
Screenshot_2024-10-09_15-27-12.png
 
Okey-dokey, i make it work with install extension manually
jupyter labextension install jupyterlab-plotly
and use in notebook

import plotly.io as pio
pio.renderers.default = 'iframe'

i don't know why this not work with default renderer and jupyter-plotly package must been in ports for using jupyterlab because
(Deprecated) Installing extensions with the jupyter labextension install command is now deprecated and will be removed in a future major version of JupyterLab.

Users should manage prebuilt extensions with package managers like pip and conda, and extension authors are encouraged to distribute their extensions as prebuilt packages
 
Back
Top