gpt4 book ai didi

Python DBUS SESSION_BUS - X11 依赖

转载 作者:太空宇宙 更新时间:2023-11-04 01:43:42 24 4
gpt4 key购买 nike

我已经运行了在 Ubuntu 桌面上运行良好的示例 python 代码:

import dbus, gobject
from dbus.mainloop.glib import DBusGMainLoop
from dbus.mainloop.glib import threads_init
import subprocess
from subprocess import call

gobject.threads_init()
threads_init()
dbus.mainloop.glib.DBusGMainLoop( set_as_default = True )

p = subprocess.Popen('dbus-launch --sh-syntax', shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
call( "export DBUS_SESSION_BUS_ADDRESS" , shell=True )
call( "export DBUS_SESSION_BUS_PID" , shell=True )

bus = dbus.SessionBus()

# get DBUS objects, do other stuff with SESSION_BUS
# in same time we can start more independent processes with this file
# finaly kill the SESSION_BUS process

在桌面上成功后,我将代码移到了服务器版本,它只带有 shell。 dbus-launch 启动进程,但 python dbus.SessionBus() 返回错误“/bin/dbus-launch 异常终止并出现以下错误:自动启动错误:X11 初始化失败”。

希望当进程以“dbus-launch”启动并成功运行时,SESSION_BUS 和 X11 之间不应该存在严格的依赖关系。错误来自python。

最好的解决方案是干净的 python 或 linux 环境设置,最差但可能可以接受一些假的或虚拟的 X11(我尝试时运气不好)

最佳答案

问题是您在单独的 shell 中运行 export 调用。您需要捕获 dbus-launch 的输出,解析值,并使用 os.environ 将它们写入环境:

p = subprocess.Popen('dbus-launch', shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
for var in p.stdout:
sp = var.split('=', 1)
print sp
os.environ[sp[0]] = sp[1][:-1]

关于Python DBUS SESSION_BUS - X11 依赖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2143785/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com