raspberry pi run python script on boot

Solutions on MaxInterview for raspberry pi run python script on boot by the best coders in the world

showing results for - "raspberry pi run python script on boot"
Jessica
12 Mar 2018
1Add it to the crontab
2The crontab runs commands at defined times.
3
4Edit the file:
5
6sudo crontab -e
7Add line to file (here a python script):
8
9@reboot python3 /home/pi/Desktop/exemple.py &