Skip to content

Commit

Permalink
Adding steps for specific version install (#4077)
Browse files Browse the repository at this point in the history
We should also call out how the install script can be used to install a specific version of Rill
  • Loading branch information
AndrewRTsao authored Feb 19, 2024
1 parent c5c9e63 commit 8e101f7
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion docs/docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,24 @@ On both macOS and Linux, you can install the latest nightly build using the inst
curl https://rill.sh | sh -s -- --nightly
```

Note for macOS users: If you previously installed Rill using `brew`, the brew-managed binary will take precedent. You can remove it by running `brew uninstall rill`.
:::warning MacOS users

If you previously installed Rill using `brew`, *the brew-managed binary will take precedent*. You can remove it by running `brew uninstall rill`.

:::

## Installing a specific version of Rill

Rather than installing the latest version of Rill automatically, you can also install a specific version through the installation script by using the following command (e.g. `v0.40.1`):
```bash
curl https://rill.sh | sh -s -- --version <insert_version_number>
```

:::info Checking the Rill version

To check the precise version of available releases, you can navigate to the [**Releases**](https://github.com/rilldata/rill/releases) page of our [Rill repo](https://github.com/rilldata/rill). Note that if an invalid or incorrect version is passed to the install script, you will get prompted with an error to specify a correct version.

:::

## Rill on Windows using WSL

Expand Down

0 comments on commit 8e101f7

Please sign in to comment.