问题
I was trying the Plotly doc first example but my web page that opens automatically on running the below scatter points code just doesn't open. It keeps loading and loading.
import plotly.express as px
fig = px.scatter(x=[0, 1, 2, 3, 4], y=[0, 1, 4, 9, 16])
fig.show()
How can I plot this graph offline like saving it as a file on my PC.
Thank You
来源:https://stackoverflow.com/questions/65166468/open-plotly-express-graphs-offiline