From 597e86d0decf2bd551f63c82b732860e2a703bb8 Mon Sep 17 00:00:00 2001 From: Patrick McGuire Date: Tue, 28 Sep 2021 14:51:24 -0400 Subject: [PATCH] changing analysis to use main python3 interpreter --- scripts/birdnet_analysis.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/birdnet_analysis.sh b/scripts/birdnet_analysis.sh index 6d68a52..560720c 100755 --- a/scripts/birdnet_analysis.sh +++ b/scripts/birdnet_analysis.sh @@ -46,8 +46,9 @@ run_analysis() { echo "Starting run_analysis() for ${1}" WEEK=$(date --date="${2}" +"%U") cd ${HOME}/BirdNET-Lite || exit 1 - "${VENV}"/bin/python analyze.py \ + python3 analyze.py \ --i "${1}" \ + --o "${1}.csv" \ --lat "${LATITUDE}" \ --lon "${LONGITUDE}" \ --week "${WEEK}" \