From da02bbf7303c4af68aeaef234f97ef651d0d87b1 Mon Sep 17 00:00:00 2001 From: Santiago Martinez Date: Thu, 11 Jan 2024 12:22:11 +0000 Subject: [PATCH] Install pyinstaller before? --- scripts/bundle.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/bundle.sh b/scripts/bundle.sh index 45c21381..0f5ee236 100644 --- a/scripts/bundle.sh +++ b/scripts/bundle.sh @@ -23,12 +23,12 @@ fi # Activate the virtual environment source build/.venv/bin/activate -# Whombat dependencies should be installed in the virtual environment -pip install . - # Pyinstaller should be installed in the virtual environment pip install pyinstaller +# Whombat dependencies should be installed in the virtual environment +pip install . + # Run pyinstaller to bundle whombat into an executable file pyinstaller \ --hidden-import "app" \