You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: documentation/docs/getting-started/installation.md
+10-2Lines changed: 10 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,6 +98,10 @@ import { PanelLeft } from 'lucide-react';
98
98
3. Run `sudo dpkg -i (filename).deb`
99
99
4. Launch goose from the app menu
100
100
101
+
:::info Linux Vulkan support
102
+
Linux Desktop packages now include Vulkan local inference support by default. The `.deb` and `.rpm` packages declare the Vulkan loader dependency, but you still need a working Vulkan-capable driver/ICD for GPU acceleration.
103
+
:::
104
+
101
105
:::tip Updating goose
102
106
It's best to periodically [update goose](/docs/guides/updating-goose).
103
107
:::
@@ -117,6 +121,10 @@ import { PanelLeft } from 'lucide-react';
The standard Linux CLI build includes Vulkan local inference support. If you want GPU acceleration, install a Vulkan loader and a working Vulkan driver/ICD for your system.
126
+
:::
127
+
120
128
:::tip Updating goose
121
129
It's best to keep goose updated. To update goose, run:
122
130
```sh
@@ -142,7 +150,7 @@ import { PanelLeft } from 'lucide-react';
142
150
2. Run the executable file to launch the goose Desktop application.
143
151
144
152
:::info Windows variants
145
-
`Windows` is the standard general-purpose build. `Windows CUDA` is for NVIDIA GPUs with a compatible CUDA driver/runtime.
153
+
`Windows Vulkan` is the standard general-purpose build with Vulkan local inference support on supported GPUs. `Windows CUDA` is the NVIDIA-optimized variant for systems with a compatible CUDA driver/runtime.
146
154
:::
147
155
148
156
:::tip Updating goose
@@ -156,7 +164,7 @@ import { PanelLeft } from 'lucide-react';
156
164
- **MSYS2**: Available from [msys2.org](https://www.msys2.org/)
157
165
- **PowerShell**: Available on Windows 10/11 by default
158
166
159
-
Use the standard build for the general-purpose Windows install. Use the CUDA variant if you have an NVIDIA GPU with a compatible CUDA driver/runtime.
167
+
Use the standard build for the general-purpose Windows install with Vulkan local inference support on supported GPUs. Use the CUDA variant if you have an NVIDIA GPU with a compatible CUDA driver/runtime and want the NVIDIA-optimized build.
Copy file name to clipboardExpand all lines: download_cli.ps1
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@
16
16
# $env:GOOSE_VERSION - Optional: specific version to install (e.g., "v1.0.25"). Can be in the format vX.Y.Z, vX.Y.Z-suffix, or X.Y.Z
17
17
# $env:GOOSE_PROVIDER - Optional: provider for goose
18
18
# $env:GOOSE_MODEL - Optional: model for goose
19
-
# $env:GOOSE_WINDOWS_VARIANT - Optional: Windows package variant to install ("standard" or "cuda")
19
+
# $env:GOOSE_WINDOWS_VARIANT - Optional: Windows package variant to install ("standard" for the Vulkan-enabled general-purpose build, or "cuda" for the NVIDIA-optimized build)
20
20
# $env:CANARY - Optional: if set to "true", downloads from canary release instead of stable
21
21
# $env:CONFIGURE - Optional: if set to "false", disables running goose configure interactively
Copy file name to clipboardExpand all lines: download_cli.sh
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ set -eu
18
18
# GOOSE_VERSION - Optional: specific version to install (e.g., "v1.0.25"). Overrides CANARY. Can be in the format vX.Y.Z, vX.Y.Z-suffix, or X.Y.Z
19
19
# GOOSE_PROVIDER - Optional: provider for goose
20
20
# GOOSE_MODEL - Optional: model for goose
21
-
# GOOSE_WINDOWS_VARIANT - Optional: Windows package variant to install (`standard` or `cuda`)
21
+
# GOOSE_WINDOWS_VARIANT - Optional: Windows package variant to install (`standard` for the Vulkan-enabled general-purpose build, or `cuda` for the NVIDIA-optimized build)
22
22
# CANARY - Optional: if set to "true", downloads from canary release instead of stable
23
23
# CONFIGURE - Optional: if set to "false", disables running goose configure interactively
24
24
# ** other provider specific environment variables (eg. DATABRICKS_HOST)
0 commit comments