本地访问远程 jupyter notebook 无法打开 GUI 窗口

我将 jupyter notebook" title="jupyter notebook">jupyter notebook 部署在服务器,本地浏览器访问,使用 turtle 库画图,本地无法弹出画图窗口,运行报错如下:

<ipython-input-3-6e3e49f5e901> in <module>()

1 import turtle

----> 2 t = turtle.Pen()

3 t.forward(100)

4 t.left(90)

5 t.forward(100)

部分省略...

TclError: no display name and no $DISPLAY environment variable

问一下谁知道这种情况怎么搞?

回答:

图片描述

图片描述

如果你的远程服务器有显示器的话,你会看到图像在远程服务器的显示器中弹出来了
你报的错误试试在最前面加上

import matplotlib

matplotlib.use('Agg')

以上是 本地访问远程 jupyter notebook 无法打开 GUI 窗口 的全部内容, 来源链接: utcz.com/a/157297.html

回到顶部