From 820a9094a6e42079528c5f9ecc0712e0a19eeb2f Mon Sep 17 00:00:00 2001 From: Joseph Richard Date: Wed, 4 Dec 2024 17:35:11 -0700 Subject: [PATCH] Update python path --- pkg/ublox/ublox.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/ublox/ublox.go b/pkg/ublox/ublox.go index 894021f7..54009bde 100644 --- a/pkg/ublox/ublox.go +++ b/pkg/ublox/ublox.go @@ -229,7 +229,7 @@ func (u *UBlox) UbloxPollInit() { wait := 1000000000 args := []string{"-u", UBXCommand, "-t", "-P", "29.20", "-w", fmt.Sprintf("%d", wait)} //python -u /usr/local/bin/ubxtool -t -p NAV-CLOCK -p NAV-STATUS -P 29.20 -w 10 - u.cmd = exec.Command("python", args...) + u.cmd = exec.Command("python3", args...) stdoutreader, _ := u.cmd.StdoutPipe() u.reader = bufio.NewReader(stdoutreader) u.setStatus(UBXTOOL_ACTIVE)