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
4 changes: 2 additions & 2 deletions docs/deployment-modes.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ For local development, `clickhousectl` helps to install ClickHouse versions and
# Install the CLI
curl https://clickhouse.com/cli | sh

# Install the latest stable ClickHouse, set it as your default, and symlink the clickhouse binary onto your PATH
clickhousectl local use stable
# Install the latest ClickHouse, set it as your default, and symlink the clickhouse binary onto your PATH
clickhousectl local use latest
clickhousectl local server start
clickhousectl local client
```
Expand Down
9 changes: 4 additions & 5 deletions docs/getting-started/install/_snippets/_cli_install.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ A `chctl` alias is also created automatically for convenience.

## Install ClickHouse {#cli-install-clickhouse}

Install the latest stable version of ClickHouse and make it your default:
Install the latest version of ClickHouse and make it your default:

```bash
clickhousectl local use stable
clickhousectl local use latest
```

`local use` installs the version if it isn't already present, sets it as your
Expand All @@ -29,9 +29,8 @@ that runs a `clickhouse` command then works as-is.
You can also select a specific version:

```bash
clickhousectl local use lts # Latest LTS release
clickhousectl local use 25.6 # Latest 25.6.x.x
clickhousectl local use 25.6.1.1 # Exact version
clickhousectl local use 26.5 # Latest 26.5.x.x
clickhousectl local use 26.5.2.39 # Exact version
```

:::note[Use vs install]
Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started/quick-start/oss.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ plain-binary workflow.
ClickHouse runs natively on Linux and macOS, and runs on Windows via
the [WSL](https://learn.microsoft.com/en-us/windows/wsl/about).

Use the CLI to install the latest stable version of ClickHouse and make it your default:
Use the CLI to install the latest version of ClickHouse and make it your default:

```bash
clickhousectl local use stable
clickhousectl local use latest
```

`local use` installs the version if it isn't already present, sets it as your
Expand Down
Loading