tkinter.TclError:没有显示名称,也没有 $DISPLAY 环境变量 python
Posted
技术标签:
【中文标题】tkinter.TclError:没有显示名称,也没有 $DISPLAY 环境变量 python【英文标题】:tkinter.TclError: no display name and no $DISPLAY environment variable python 【发布时间】:2019-10-09 21:49:08 【问题描述】:我想使用 ssh 在远程系统中执行我的 python 文件。我将文件导出到远程系统。
这是示例文件:
import os
import time
import pymsgbox
pymsgbox.alert('Hi Afreeth ', 'Welcome')
if 'DISPLAY' not in os.environ:
pass
我想在我的系统中使用 ssh 执行它,它应该显示在远程系统中。 但它失败了
我得到的错误:
Traceback (most recent call last):
File "cd1.py", line 5, in <module>
File "pymsgbox/__init__.py", line 100, in alert
File "pymsgbox/__init__.py", line 156, in _buttonbox
File "tkinter/__init__.py", line 1871, in __init__
_tkinter.TclError: no display name and no $DISPLAY environment variable
[12113] Failed to execute script myprogram
如何解决。我在堆栈上找到了一些答案,但它并没有解决我。如果我去远程系统中执行它,它就可以工作。但是当我从我的系统执行时,它失败了。如何解决。
【问题讨论】:
【参考方案1】:找到答案:
我只需要在他们的 ssh 会话中运行export DISPLAY=:0
,运行的程序就会在远程显示器上运行。一个简单的例子:
paulsteven@smackcoders:~$ ssh afreeth@his_ipaddress
afreeth@smackcoders:~$ export DISPLAY=:0
afreeth@smackcoders:~$ firefox
Firefox is now running on afreeth's display.
【讨论】:
以上是关于tkinter.TclError:没有显示名称,也没有 $DISPLAY 环境变量 python的主要内容,如果未能解决你的问题,请参考以下文章
tkinter.TclError:图像“pyimage3”不存在
为啥我会收到 tkinter.TclError: bitmap not defined 错误?
tkinter ttk 主题:_tkinter.TclError:不支持图像文件格式“svg”
tkinter、python 和 seaborn 的问题:_tkinter.TclError: no display name and no $DISPLAY environment variable
Python系列_tkinter.TclError: no display name and no $DISPLAY environment variable
python3 tkinter报错:_tkinter.TclError: cannot use geometry manager pack inside . which already has sla