-
-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#!/usr/bin/env bash | ||
|
||
dirpath=$(dirname "$(readlink -f "$0")") | ||
|
||
# Check if the virtual environment exists | ||
if [ ! -d "$dirpath/env" ]; then | ||
echo | ||
echo "No virtual environment found! Run setup_env.sh to set it up first." | ||
echo | ||
read -p "Press any key to continue..." | ||
exit 1 | ||
fi | ||
|
||
# Check if pyinstaller is installed in the virtual environment | ||
if [ ! -f "$dirpath/env/bin/pyinstaller" ]; then | ||
echo | ||
echo "Installing pyinstaller..." | ||
"$dirpath/env/bin/pip" install pyinstaller | ||
if [ $? -ne 0 ]; then | ||
echo "Failed to install pyinstaller." | ||
exit 1 | ||
fi | ||
fi | ||
|
||
# Run pyinstaller with the specified build spec file | ||
echo | ||
echo "Running pyinstaller..." | ||
"$dirpath/env/bin/pyinstaller" "$dirpath/build.spec" | ||
if [ $? -ne 0 ]; then | ||
echo "PyInstaller build failed." | ||
exit 1 | ||
fi | ||
|
||
echo | ||
echo "Build completed successfully." | ||
read -p "Press any key to continue..." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
#!/usr/bin/env bash | ||
|
||
dirpath=$(dirname "$(readlink -f "$0")") | ||
|
||
# Check if git is installed | ||
if ! command -v git &> /dev/null; then | ||
echo "No git executable found in PATH!" | ||
echo | ||
read -p "Press any key to continue..." | ||
exit 1 | ||
fi | ||
|
||
# Check if the virtual environment exists | ||
if [ ! -d "$dirpath/env" ]; then | ||
echo | ||
echo "Creating the env folder..." | ||
python3 -m venv "$dirpath/env" | ||
if [ $? -ne 0 ]; then | ||
echo | ||
echo "No python executable found in PATH or failed to create virtual environment!" | ||
echo | ||
read -p "Press any key to continue..." | ||
exit 1 | ||
fi | ||
fi | ||
|
||
# Activate the virtual environment and install requirements | ||
echo | ||
echo "Installing requirements.txt..." | ||
"$dirpath/env/bin/python" -m pip install -U pip | ||
if [ $? -ne 0 ]; then | ||
echo "Failed to upgrade pip." | ||
exit 1 | ||
fi | ||
|
||
"$dirpath/env/bin/pip" install wheel | ||
if [ $? -ne 0 ]; then | ||
echo "Failed to install wheel." | ||
exit 1 | ||
fi | ||
|
||
"$dirpath/env/bin/pip" install -r "$dirpath/requirements.txt" | ||
if [ $? -ne 0 ]; then | ||
echo "Failed to install requirements." | ||
exit 1 | ||
fi | ||
|
||
echo | ||
echo "All done!" | ||
echo | ||
read -p "Press any key to continue..." |