docs: clarify GUI backend requirement

This commit is contained in:
thePR0M3TH3AN
2025-07-19 12:09:39 -04:00
parent 6855c85329
commit c6a87e000d
2 changed files with 31 additions and 0 deletions

View File

@@ -14,6 +14,21 @@ python -m seedpass_gui
seedpass-gui
```
Only the headless `toga-dummy` backend ships with the project for automated
tests. To actually display windows you need a platform-specific backend such as
`toga-gtk`, `toga-winforms`, or `toga-cocoa`.
```bash
# Linux
pip install toga-gtk
# Windows
pip install toga-winforms
# macOS
pip install toga-cocoa
```
The GUI shares the same encrypted vault and configuration as the command line tool.
To generate a packaged binary, run `briefcase build` (after the initial `briefcase create`).