änderungen für mac

This commit is contained in:
marcusH
2026-06-21 11:40:15 +02:00
parent fe9973f831
commit a89c3df49b
4549 changed files with 576393 additions and 0 deletions
Executable
+18
View File
@@ -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 "$@"