Received a new Windows 11 computer with WSL, only to find out after installing everything, my 3D plots are broken. I’ve simplified the code to demonstrate this:
import plotly.graph_objects as go
fig = go.Figure(data=[go.Scatter3d(x=[1,2,3], y=[4,5,6], z=[7,8,9], mode='markers')])
fig.show(renderer='browser')
For some reason this is creating a 2d graph?
Is this familiar to anyone? All my 2D plots work great still.
Using plotly 5.15.0 in WSL with chrome browser.