When I recently tried plotly 3.0.0 with JupyterLab 0.32.1 by running the following code,
import plotly.graph_objs as go
import numpy as np
x = np.random.randn(1000)
y = np.random.randn(1000)
go.FigureWidget(data=[{'x': x, 'y': y, 'type': 'histogram2dcontour'}])
the plot was not displayed and I received an “Error displaying widget” message. I have jupyterlab-manager 0.35.0 and plotly-extension 0.16.0 installed; I do not have plotlywidget installed (attempting to install it resulted in an error). Any thoughts as to why the plot is not being displayed? I can see the plot if I run the above code in a plain Jupyter notebook.