diff --git a/get-started/about/deployment-modes.mdx b/get-started/about/deployment-modes.mdx index e4d0f2ba2..8f00fafa0 100644 --- a/get-started/about/deployment-modes.mdx +++ b/get-started/about/deployment-modes.mdx @@ -66,7 +66,7 @@ For local development, `clickhousectl` helps to install ClickHouse versions and curl https://clickhouse.com/cli | sh # Install and start ClickHouse locally -clickhousectl local install stable +clickhousectl local install latest clickhousectl local server start clickhousectl local client ``` diff --git a/snippets/_cli_install.mdx b/snippets/_cli_install.mdx index 067cb41a4..a8e118531 100644 --- a/snippets/_cli_install.mdx +++ b/snippets/_cli_install.mdx @@ -16,18 +16,18 @@ A `chctl` alias is also created automatically for convenience. ## Install ClickHouse {#cli-install-clickhouse} -Install the latest stable version of ClickHouse: +Install the latest version of ClickHouse: ```bash -clickhousectl local install stable +clickhousectl local install latest ``` You can also install a specific version: ```bash clickhousectl local install lts # Latest LTS release -clickhousectl local install 25.6 # Latest 25.6.x.x -clickhousectl local install 25.6.1.1 # Exact version +clickhousectl local install 26.5 # Latest 26.5.x.x +clickhousectl local install 26.5.2.39 # Exact version ```