änderungen für mac
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
cd "$(dirname "$0")"
|
||||
|
||||
VENV=".venv"
|
||||
|
||||
if [[ ! -d "$VENV" ]]; then
|
||||
echo "Lege venv an ..."
|
||||
python3 -m venv "$VENV"
|
||||
fi
|
||||
|
||||
if ! "$VENV/bin/python" -c "import PyQt6" 2>/dev/null; then
|
||||
echo "Installiere PyQt6 ..."
|
||||
"$VENV/bin/pip" install --quiet --upgrade pip
|
||||
"$VENV/bin/pip" install --quiet PyQt6
|
||||
fi
|
||||
|
||||
exec "$VENV/bin/python" wuerth_vpn "$@"
|
||||
Reference in New Issue
Block a user