placing installation in venv

This commit is contained in:
Patrick McGuire
2021-10-13 15:41:20 -04:00
parent 80ee8990f2
commit 47cf04d59a
4 changed files with 12 additions and 9 deletions
+8 -5
View File
@@ -47,8 +47,11 @@ install_deps() {
install_birdnet() {
cd ~/BirdNET-Pi || exit 1
echo "Establishing a python virtual environment"
python3 -m venv birdnet
source ./birdnet/bin/activate
echo "Upgrading pip, wheel, and setuptools"
sudo pip3 install --upgrade pip wheel setuptools
pip3 install --upgrade pip wheel setuptools
if [ ! -f $(dirname ${my_dir})/tflite_runtime-2.6.0-cp37-none-linux_aarch64.whl ];then
echo "Fetching the TFLite pre-built binaries"
TFLITE_URL="https://drive.google.com/uc?export=download&id=1dlEbugFDJXs-YDBCUC6WjADVtIttWxZA"
@@ -58,13 +61,13 @@ install_birdnet() {
curl -Lb /tmp/cookie ${TF_COOKIE} -o tflite_runtime-2.6.0-cp37-none-linux_aarch64.whl
fi
echo "Installing the TFLite bin wheel"
sudo pip3 install --upgrade tflite_runtime-2.6.0-cp37-none-linux_aarch64.whl
pip3 install --upgrade tflite_runtime-2.6.0-cp37-none-linux_aarch64.whl
echo "Installing colorama==0.4.4"
sudo pip3 install colorama==0.4.4
pip3 install colorama==0.4.4
echo "Installing librosa"
sudo pip3 install librosa
pip3 install librosa
echo "Installing mysql-connector-python"
sudo pip3 install mysql-connector-python
pip3 install mysql-connector-python
}
read -sp "\