run python script on startup - debian

て烟熏妆下的殇ゞ 提交于 2019-12-07 12:14:30

问题


I have created an application using webcam. here my application opens a window to display the image. I want to run that application on startup. if i put startup file in rc.local, it runs successfully at startup but not allowing to show window. it shows -

gtk warning cannot open display.

how to show window? please help me guys!!


回答1:


If you're running LXDE (default on raspbian)

Add a .desktop file to your ~/.config/autostart directory (create one if not available) with 3 lines saying :

[Desktop Entry] 
Type=Application
Exec=python /path/to/your/application.py arguments

UPDATE: updated with Don Question's remark



来源:https://stackoverflow.com/questions/15159710/run-python-script-on-startup-debian

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!