未显示图形窗口

问题描述 投票:0回答:1

我正在Spyder 4.1.1中运行下面的代码,但是没有显示可视化的窗口。我是新来的。请帮助

import plotly.express as px
fig = px.scatter(x=[0, 1, 2, 3, 4], y=[0, 1, 4, 9, 16])
fig.show()
python plotly spyder
1个回答
0
投票

为了使绘图显示在Spyder中,请使用静态图像渲染器。为此,您需要安装所需的dependencies。这在plotly renderer page中有详细说明。

© www.soinside.com 2019 - 2024. All rights reserved.