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
16 changes: 15 additions & 1 deletion docs/build/smart-contracts/getting-started/setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,21 @@ Install with cargo from source:
</TabItem>
<TabItem value="linux" label="Linux">

Install with Homebrew (macOS, Linux):
Install with Homebrew (Linux):

If you don't have Homebrew installed, you can install it with the following command:

```bash
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
```

Then, follow the instructions to add Homebrew to your PATH:

```bash
eval "$(~/.linuxbrew/bin/brew shellenv)"
```

Once Homebrew is installed, install the Stellar CLI:

```sh
brew install stellar-cli
Expand Down