From 7efc04ab8859432f4a62ee2205b33183c05ec6b0 Mon Sep 17 00:00:00 2001 From: jcleira Date: Wed, 13 Dec 2023 17:11:48 +0100 Subject: [PATCH] Draft build docs #02 --- docs/src/cli/install.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/src/cli/install.md b/docs/src/cli/install.md index 6e7014c95db962..379d9d7a183c43 100644 --- a/docs/src/cli/install.md +++ b/docs/src/cli/install.md @@ -156,6 +156,7 @@ Before building from source, make sure to install the following prerequisites: #### For Debian and Other Linux Distributions: 1. Rust Programming Language: + Check "Install Rust" at [https://www.rust-lang.org/tools/install](https://www.rust-lang.org/tools/install), which recommends the following command. ```bash curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh ``` @@ -183,14 +184,15 @@ Before building from source, make sure to install the following prerequisites: Replace `apt` with your distribution's package manager (e.g., `yum`, `dnf`, `pacman`) and adjust package names as needed. #### For macOS: -1. Install Homebrew (if not already installed): +1. Install Homebrew (if not already installed), check "Install Hombrew" at [https://brew.sh/](https://brew.sh/), which recommends the following command: ```bash /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" ``` 2. Install the necessary tools and libraries using Homebrew: ```bash - brew install rust pkg-config libudev protobuf llvm + brew install rust pkg-config libudev protobuf llvm coreutils ``` +3. Follow the instructions given at the end of the brew install command about PATH configurations. #### For Windows: 1. **Install Rust for Windows**: Download and install Rust from [rustup.rs](https://rustup.rs/).