我一直在努力学习如何使用
plotly
。我遵循所有的安装说明,但当我运行渲染的代码时,它只是出现了一个空白。
我正在使用
jupyterlab
在线,
python 3.6
。
下面的代码来自于此
link
! pip install jupyterlab==1.0 "ipywidgets==7.5"
# Avoid "JavaScript heap out of memory" errors during extension installation
# (OS X/Linux)
! export NODE_OPTIONS=--max-old-space-size=4096
# (Windows)
! set NODE_OPTIONS=--max-old-space-size=4096
# Jupyter widgets extension
! jupyter labextension install @jupyter-widgets/jupyterlab-manager@1.0 --no-build
# FigureWidget support
! jupyter labextension install plotlywidget@1.1.0 --no-build
# and jupyterlab renderer support
! jupyter labextension install jupyterlab-plotly@1.1.0 --no-build
# JupyterLab chart editor support (optional)
! jupyter labextension install jupyterlab-chart-editor@1.2 --no-build
# Build extensions (must be done to activate extensions since --no-build is used above)
! jupyter lab build
# Unset NODE_OPTIONS environment variable
# (OS X/Linux)
! unset NODE_OPTIONS
# (Windows)
! set NODE_OPTIONS=
扩展程序的安装似乎是成功的,因为当我检查可用的扩展程序时,出现的是这样的情况。
然而,当我运行以下代码时,单元格下出现了一个空白。
import plotly.graph_objects as go
fig = go.Figure(data=go.Bar(y=[2, 3, 1]))
fig.show()
See the output:
我尝试使用较低版本的plotly
,但问题仍然存在。但问题仍然存在。我也在plotly
社区中研究并寻找答案,但我没有成功。