Skip to content
Merged
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
12 changes: 11 additions & 1 deletion docs/src/miden_node_setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,19 @@ There are two ways to connect to a Miden node:

## Running the Miden node locally

:::tip[Prerequisites]
Building the node from source requires a C/C++ toolchain (for compiling RocksDB). On **macOS**, make sure you have the Xcode Command Line Tools installed:

```bash
xcode-select --install
```

On **Ubuntu**, see the [node installation page](https://docs.miden.xyz/miden-node/operator/installation#install-using-cargo) for the required packages. If you run into `'cstdint' file not found` errors on macOS, see the [troubleshooting section](https://docs.miden.xyz/miden-node/operator/installation#install-using-cargo) on the installation page.
:::

### Step 1: Install the Miden node

Next, install the miden-node crate using this command:
Install the miden-node crate using this command:

```bash
cargo install miden-node --locked --version 0.13.0
Expand Down