From d7df6679bd726fc39a5c82b78ba9c0847eecf467 Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Sat, 19 Jul 2025 13:09:31 -0400 Subject: [PATCH] Install toga-winforms backend on Windows --- scripts/install.ps1 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/install.ps1 b/scripts/install.ps1 index d843b8b..fcb09fa 100644 --- a/scripts/install.ps1 +++ b/scripts/install.ps1 @@ -260,6 +260,10 @@ if ($LASTEXITCODE -ne 0) { Write-Error "Failed to install SeedPass package" } +Write-Info "Installing BeeWare GUI backend..." +& "$VenvDir\Scripts\python.exe" -m pip install toga-winforms +if ($LASTEXITCODE -ne 0) { Write-Warning "Failed to install GUI backend" } + # 5. Create launcher script Write-Info "Creating launcher script..." if (-not (Test-Path $LauncherDir)) { New-Item -ItemType Directory -Path $LauncherDir | Out-Null }