Desktop GUI · Open Source · Cross-platform
Immich-Go GUI¶
A beautiful desktop GUI for immich-go — bulk upload, archive, and stack your media with Immich.
Immich-Go GUI is a cross-platform desktop application (PySide6/Qt) that wraps the immich-go CLI. Configure jobs with forms, preview the exact command, and launch bulk media operations against your Immich server — without memorizing a forest of flags.
Why Immich-Go GUI?¶
Full workflow coverage
Eleven tabs for every upload, archive, and stack path — folder, Google Photos, iCloud, Picasa, Immich-to-Immich, and more.
Secrets done right
API keys live in the OS keyring, travel as environment variables, and stay masked in previews and logs.
Multi-server profiles
Home vs work, staging vs production — switch Immich targets without re-entering credentials each time.
Pre-flight safety
Connection tests, dry-run, process locks, and SHA256-verified binary downloads before long jobs start.
Simple & advanced modes
Friendly defaults for common fields, with a full flag surface when you need power-user control.
Real terminal launches
Jobs open in your preferred terminal so progress, errors, and resumes stay visible and inspectable.
See it in action¶

Start here¶
Pick the path that matches what you need right now.
System architecture¶
flowchart TB
classDef userStyle fill:#6366f1,stroke:#4338ca,color:#fff,stroke-width:2px
classDef coreStyle fill:#8b5cf6,stroke:#6d28d9,color:#fff,stroke-width:2px
classDef runStyle fill:#f59e0b,stroke:#b45309,color:#fff,stroke-width:2px
classDef extStyle fill:#10b981,stroke:#047857,color:#fff,stroke-width:2px
User([User]):::userStyle
subgraph GUILayer["Immich-Go GUI"]
direction TB
Config[Config Manager]:::coreStyle
Builder[Command Builder]:::coreStyle
Validator[Input Validator]:::coreStyle
BinMgr[Binary Manager]:::coreStyle
Process[Process Runner]:::runStyle
end
subgraph External["External"]
direction TB
Binary[immich-go CLI]:::extStyle
Server[(Immich Server)]:::extStyle
end
User -->|configure| Config
User -->|fill form| Builder
Builder --> Validator
Validator --> Process
Builder --> Process
Config --> Process
BinMgr --> Binary
Process -->|launch with argv + secrets| Binary
Binary -->|upload / archive / stack| Server
Suggested reading order¶
New users¶
- Getting Started — install and first launch
- Platform Notes — OS-specific paths and quirks
- Configuration — server, keys, binary, themes
- Choose Your Workflow — pick the right tab
- Your workflow page — Upload / Archive / Stack
- Troubleshooting & FAQ — keep bookmarked
Contributors¶
Documentation map¶
User Guide¶
Developer Guide¶
core/ reference.
Extend
Adding Tabs & Flags
Grow CLI parity without breaking safety.
Quality
Testing
pytest, fixtures, headless Qt, _norm_argv.
Ship
CI/CD & Releases
Branching, Release Please, packaging.
Tooling
Scripts
CLI help capture and review utilities.
Reference¶
IMMICH_GO_* secret and server env map.
CLI
CLI Command Mapping
Maps all 11 GUI tabs to immich-go subcommands.
Versions
immich-go Compatibility
Tested versions, download, SHA256 checks.
Related project files¶
| File | Purpose |
|---|---|
| README | Project landing page |
| CONTRIBUTING | How to contribute |
| CHANGELOG | Version history |
| LICENSE | MIT license |