Answers for "raspberry pi run python script on boot"

0

raspberry pi run python script on boot

Add it to the crontab
The crontab runs commands at defined times.

Edit the file:

sudo crontab -e
Add line to file (here a python script):

@reboot python3 /home/pi/Desktop/exemple.py &
Posted by: Guest on August-01-2021

Code answers related to "raspberry pi run python script on boot"

Python Answers by Framework

Browse Popular Code Answers by Language