From 090b41775fc36d508e1884e010a9674f1c336303 Mon Sep 17 00:00:00 2001 From: frederik Date: Tue, 13 Feb 2024 13:53:35 +0100 Subject: [PATCH] preinstalling wheel, to make sure we can build a wheel for inotify: the legacy 'setup.py install' method will be deprecated with pip 23.1 --- scripts/install_birdnet.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/install_birdnet.sh b/scripts/install_birdnet.sh index e090ebe..a90b6bb 100755 --- a/scripts/install_birdnet.sh +++ b/scripts/install_birdnet.sh @@ -30,6 +30,7 @@ install_birdnet() { echo "Establishing a python virtual environment" python3 -m venv birdnet source ./birdnet/bin/activate + pip3 install wheel get_tf_whl pip3 install -U -r ./requirements_custom.txt }