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
9 changes: 6 additions & 3 deletions website/docs/getting-started/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,23 @@ Download the latest version of Spice, connect to a dataset in S3, and ask questi

<Tabs>
<TabItem value="default" label="macOS, Linux, and WSL" default>
### Install Script

```bash
curl https://install.spiceai.org | /bin/bash
```

Or using `brew`:
### Homebrew

```bash
brew install spiceai/spiceai/spice
```

</TabItem>
<TabItem value="windows" label="Windows" default>
### PowerShell Install Script

```bash
curl -L "https://install.spiceai.org/Install.ps1" -o Install.ps1 && PowerShell -ExecutionPolicy Bypass -File ./Install.ps1
iex ((New-Object System.Net.WebClient).DownloadString("https://install.spiceai.org/Install.ps1"))
```
</TabItem>
</Tabs>
Expand Down
11 changes: 10 additions & 1 deletion website/docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ For deployment options, such as to Kubernetes, see [`Deployment`](./deployment/i
### PowerShell Install Script

```bash
curl -L "https://install.spiceai.org/Install.ps1" -o Install.ps1 && PowerShell -ExecutionPolicy Bypass -File ./Install.ps1
iex ((New-Object System.Net.WebClient).DownloadString("https://install.spiceai.org/Install.ps1"))
```

</TabItem>
Expand Down Expand Up @@ -68,6 +68,7 @@ Binaries for Linux, Windows, and macOS are available for download from GitHub at
brew install protobuf
```
</TabItem>

<TabItem value="linux" label="Linux (Ubuntu)">
1. Install system dependencies
```shell
Expand Down Expand Up @@ -96,6 +97,7 @@ Binaries for Linux, Windows, and macOS are available for download from GitHub at
source $HOME/.cargo/env
```
</TabItem>

</Tabs>

### Build Spice OSS
Expand Down Expand Up @@ -131,13 +133,17 @@ The Spice CLI will automatically detect and download the appropriate runtime bin
#### CUDA Support

**Steps**:

1. GPUs with Cuda compute capabilities < 7.5 are not supported (V100, Titan V, GTX 1000 series, ...).
1. Ensure both Cuda and associated Nvidia drivers are installed. Requires CUDA version 12.2 or higher
1. Ensure Nvidia binaries are in your path:

```shell
export PATH=$PATH:/usr/local/cuda/bin
```

1. Build Spice OSS with CUDA support:

```shell
make install-with-models-cuda
```
Expand All @@ -147,12 +153,15 @@ This ensures CUDA devices are selected on model load, and CUDA-specifiy kernels
#### Metal Support

**Steps**:

1. Ensure you have Xcode installed.

```shell
xcode-select --install
```

1. Build Spice OSS with Metal support:

```shell
make install-with-models-metal
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ let allTabs = [
{
id: 'windows',
name: 'Windows',
command: 'Invoke-WebRequest -Uri "https://install.spiceai.org"'
command: 'iex ((New-Object System.Net.WebClient).DownloadString("https://install.spiceai.org/Install.ps1"))'
}
]

Expand Down