diff --git a/docs/tools/cli/README.mdx b/docs/tools/cli/README.mdx index 1f8f42851..9cb008257 100644 --- a/docs/tools/cli/README.mdx +++ b/docs/tools/cli/README.mdx @@ -8,6 +8,17 @@ sidebar_position: 20 The command line interface to Soroban smart contracts. It allows you to build, deploy, and interact with smart contracts; configure identities; generate key pairs; manage networks; and more. -Install Stellar CLI as explained in [Setup](../../build/smart-contracts/getting-started/setup.mdx#install-the-stellar-cli). For examples on how to use the Stellar CLI, please see [Stellar CLI Guides](./cookbook/README.mdx). +## Install -The auto-generated comprehensive reference documentation is available [here](stellar-cli.mdx). +Install the latest release on macOS, Linux or WSL with the install script: + +```sh +curl -fsSL https://github.com/stellar/stellar-cli/raw/main/install.sh | sh +``` + +For Homebrew, winget, cargo, GitHub Actions and shell autocomplete, see [Install the CLI](./install-cli.mdx). To install the CLI with Rust, the Wasm target and an editor, see [Setup](../../build/smart-contracts/getting-started/setup.mdx#install-the-stellar-cli). + +## Learn more + +- [Stellar CLI Guides](./cookbook/README.mdx) gives examples of how to use the CLI. +- [Stellar CLI Manual](./stellar-cli.mdx) is the auto-generated reference for every command. diff --git a/docs/tools/cli/cookbook/README.mdx b/docs/tools/cli/cookbook/README.mdx index a0c7a1dea..5737302cf 100644 --- a/docs/tools/cli/cookbook/README.mdx +++ b/docs/tools/cli/cookbook/README.mdx @@ -8,3 +8,5 @@ sidebar_position: 150 import DocCardList from "@theme/DocCardList"; Guides that will help you use the Stellar CLI. + +If you do not have the CLI yet, see [Install the CLI](../install-cli.mdx).