Answers for "run python file on boot raspberry pi"

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
0

run python script in raspberry pi bootup

sudo nano /etc/rc.local

# add command which you want to execute after bootup at the end of the file
# add "&" at the end if you are using an infinite looping code so that it wont block other commands
sudo python /home/pi/sample.py &
sudo http-server /home/pi/myFolder

# add exit 0 at the end 
exit 0
Posted by: Guest on January-14-2022

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

Python Answers by Framework

Browse Popular Code Answers by Language