Microcontroller › Raspberry Pi › run program on raspberry pi on boot up › there are many ways to run a
December 20, 2018 at 9:58 am
#14965
Participant
there are many ways to run a program on boot up on Raspberry Pi…like editing rc.local file..open rc.local by the following command – sudo nano /etc/rc.local and add the following lines in the file for running a python program on bootup – sudo python path_of_file/name_of_file.py &
exit 0