ModuleNotFoundError: No module named 'plotly.graph_objects'
This is the approach now mostly used in the plotly docs. Example:
import plotly.graph_objects as go
You should use instead:
from plotly import graph_objs as go
This is the approach now mostly used in the plotly docs. Example:
import plotly.graph_objects as go
You should use instead:
from plotly import graph_objs as go