From 46b7c981ec6b9ff2d08fc8474e3d095b0ce90744 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 10:52:50 +0000 Subject: [PATCH 1/2] docs: Add Homebrew installation instructions for Linux --- .../smart-contracts/getting-started/setup.mdx | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/docs/build/smart-contracts/getting-started/setup.mdx b/docs/build/smart-contracts/getting-started/setup.mdx index ff7adf11d8..42246f401f 100644 --- a/docs/build/smart-contracts/getting-started/setup.mdx +++ b/docs/build/smart-contracts/getting-started/setup.mdx @@ -108,7 +108,21 @@ Install with cargo from source: -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 "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" +``` + +Once Homebrew is installed, install the Stellar CLI: ```sh brew install stellar-cli From 34d9dc6440f75276557eb8018188cc6003914810 Mon Sep 17 00:00:00 2001 From: kaankacar Date: Tue, 25 Nov 2025 15:30:41 +0300 Subject: [PATCH 2/2] fix: update homebrew path in setup.mdx --- docs/build/smart-contracts/getting-started/setup.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build/smart-contracts/getting-started/setup.mdx b/docs/build/smart-contracts/getting-started/setup.mdx index 42246f401f..b3f57d3082 100644 --- a/docs/build/smart-contracts/getting-started/setup.mdx +++ b/docs/build/smart-contracts/getting-started/setup.mdx @@ -119,7 +119,7 @@ If you don't have Homebrew installed, you can install it with the following comm Then, follow the instructions to add Homebrew to your PATH: ```bash -eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" +eval "$(~/.linuxbrew/bin/brew shellenv)" ``` Once Homebrew is installed, install the Stellar CLI: