From 82c4c30f51f742e853854a7ab0e310c7e91fcaf4 Mon Sep 17 00:00:00 2001 From: Jason Robey Date: Mon, 14 Jan 2019 21:52:10 -0500 Subject: [PATCH] make explicit call to python3 We had to explicitly call python3 to get this to autostart. It appeared to default to 2.7 when executing rc.local. --- binary_clock.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binary_clock.md b/binary_clock.md index 92f5336..40b8e1a 100644 --- a/binary_clock.md +++ b/binary_clock.md @@ -57,6 +57,6 @@ sudo nano /etc/rc.local ``` 2. Add following before exit 0. ``` -/home/pi/binary-clock/clock.py & +python3 /home/pi/binary-clock/clock.py & ```