Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ wcheck compares different workspaces of git repositories and reports their diffe
## Quick Install

```bash
uv tool install wcheck # Basic
uv tool install wcheck[gui] # With GUI (PySide6)
uv tool install wcheck[tui] # With TUI (Textual)
uv tool install wcheck # Basic
uv tool install 'wcheck[gui]' # With GUI (PySide6)
uv tool install 'wcheck[tui]' # With TUI (Textual)
uv tool install 'wcheck[gui,tui]' # With both
```

## Quick Example
Expand Down
7 changes: 7 additions & 0 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,13 @@ uv tool install 'wcheck[tui]'

Then use `--tui` flag with `status` or `wconfig` commands.

### Both GUI and TUI

```bash
uv tool install 'wcheck[gui,tui]'
# or: pip install 'wcheck[gui,tui]'
```

### Development Dependencies

```bash
Expand Down