changing analysis to use main python3 interpreter

This commit is contained in:
Patrick McGuire
2021-09-28 14:51:24 -04:00
parent bc2d3df898
commit 597e86d0de
+2 -1
View File
@@ -46,8 +46,9 @@ run_analysis() {
echo "Starting run_analysis() for ${1}" echo "Starting run_analysis() for ${1}"
WEEK=$(date --date="${2}" +"%U") WEEK=$(date --date="${2}" +"%U")
cd ${HOME}/BirdNET-Lite || exit 1 cd ${HOME}/BirdNET-Lite || exit 1
"${VENV}"/bin/python analyze.py \ python3 analyze.py \
--i "${1}" \ --i "${1}" \
--o "${1}.csv" \
--lat "${LATITUDE}" \ --lat "${LATITUDE}" \
--lon "${LONGITUDE}" \ --lon "${LONGITUDE}" \
--week "${WEEK}" \ --week "${WEEK}" \