Plotly和JupyterLab:未从远程服务器显示图形

时间:2018-12-18 14:46:48

标签: ssh plotly jupyter jupyter-lab

我正在使用通过SSH端口转发连接到的JupyterLab服务器。由于某些原因,不会显示出图。除了图像以外,我还得到了FigureWidget的文字描述:

import plotly.graph_objs as go
x = [1,2,3,4,5]
y = [2,5,6,1,-5]

go.FigureWidget(data=[{'x':x, 'y':y}])

输出:

Figure({
'data': [{'type': 'scatter',
          'uid': '2aae0f73-7b85-4dc7-8551-7a1393d1e3c8',
          'x': [1, 2, 3, 4, 5],
          'y': [2, 5, 6, 1, -5]}],
'layout': {}
})

这是我连接到服务器的方式:

ssh -N -f -L 8888:localhost:9000 user@server

这是我启动服务器的方式:

jupyter lab --port=9000 --no-browser

编辑:

似乎可以在Firefox上正常运行,但不能与Chrome一起运行。

0 个答案:

没有答案