我想在使用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
如何修复它。我在堆栈上找到了一些答案,但并不能解决我的问题。如果我去在远程系统中执行它,它将起作用。但是当我从系统执行时,它失败了。如何解决。
答案 0 :(得分:0)
找到答案:
我只需要在他们的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.