对 Raspberry Pi 上的 systemd 服务中的 Kivy GUI 问题进行故障排除

对 Raspberry Pi 上的 systemd 服务中的 Kivy GUI 问题进行故障排除

我正在使用一个简单的 Kivy 脚本来实现在 Raspberry Pi 触摸屏上运行的 GUI。直接运行时效果很好/usr/bin/python3 /home/pi/Documents/kivy_script.py。但是,当我的 systemd 服务运行它时,我没有看到 UI。

Description=This file handles the enviroment info python application
After=multi-user.target

[Service]
Type=simple
User=pi
Environment=DISPLAY=:0
ExecStart=/usr/bin/python3 /home/pi/Documents/simple_timer/main.py
Restart=on-failure
    
    
[Install]
WantedBy=multi-user.target

有人对可能出现的问题以及我可以采取哪些措施来解决它有任何提示吗?

相关内容