Skip to content
Open
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
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ or
curl -fsSL https://lakesql-bin.tidbcloud.com/install/lakesql.sh | bash -s -- -y --prefix /usr/local
```

### Homebrew

```bash
brew install tidbcloud/tap/lakesql
```

### Alternative: install via cargo-binstall

If you already use Rust tooling and have `cargo-binstall` available, you can install the prebuilt `lakesql` binary from the published release artifacts:
Expand Down Expand Up @@ -81,7 +87,7 @@ sudo dnf install -y lakesql
```bash
curl -fsSL https://lakesql-bin.tidbcloud.com/keys/lakesql-packages.rsa.pub \
| sudo tee /etc/apk/keys/lakesql-packages.rsa.pub >/dev/null
echo "https://lakesql-bin.tidbcloud.com/apk/stable" \
echo "https://lakesql-bin.tidbcloud.com/apk/stable/$(apk --print-arch)" \
| sudo tee -a /etc/apk/repositories >/dev/null
sudo apk update
sudo apk add lakesql
Expand Down
Loading