离线plot.ly将无法使用jupyter笔记本

时间:2018-04-16 10:16:18

标签: python jupyter-notebook plotly

我正在尝试使用此代码开始使用plot.ly(python api),我正在使用jupyter笔记本运行:

from plotly.offline import download_plotlyjs, init_notebook_mode
init_notebook_mode(connected=True)

我收到了这个错误:

Javascript error adding output!
ReferenceError: Can't find variable: requirejs
See your browser Javascript console for more details.

我已经打开了js控制台,我看到了这些错误:

enter image description here

1 个答案:

答案 0 :(得分:3)

假设您已使用ids进行了剧情安装,以下内容应足以让您入门。这个目前正在我的Jupyter笔记本上进行离线绘图。

$ pip install plotly

跟随他们的一个简单的scatter plots来检查一切是否正常。使用import plotly.offline as py import plotly.graph_objs as go py.init_notebook_mode(connected=True) # Initialise offline ploytly environment 会将图表显示为笔记本中的输出,而py.iplot会在新标签中显示图表。