Skip to content
Merged
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
24 changes: 24 additions & 0 deletions docs/toolhive/guides-cli/install.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,14 @@ brew tap stacklok/tap
brew install thv
```

</TabItem>
<TabItem value='winget' label='WinGet (Windows)'>
WinGet is available by default on Windows, making this the easiest installation method:

```bash
winget install stacklok.thv
```

</TabItem>
<TabItem value='binary' label='Pre-compiled binaries'>
1. Visit the [ToolHive releases page](https://github.com/stacklok/toolhive/releases)
Expand Down Expand Up @@ -145,6 +153,15 @@ If you installed ToolHive via Homebrew, upgrade it with:
brew upgrade thv
```

</TabItem>
<TabItem value='winget' label='WinGet (Windows)'>

If you installed ToolHive via WinGet, upgrade it with:

```bash
winget upgrade stacklok.thv
```

</TabItem>
<TabItem value='binary' label='Pre-compiled binaries'>

Expand Down Expand Up @@ -250,6 +267,13 @@ To uninstall ToolHive:
brew uninstall thv
```
</TabItem>
<TabItem value='winget' label='WinGet (Windows)'>
If you installed ToolHive via WinGet, uninstall it with:

```bash
winget uninstall stacklok.thv
```
</TabItem>
<TabItem value='binary' label='Pre-compiled binaries'>
Delete the binary from your PATH:

Expand Down
Loading