From a3b901b25e82040fe6f54c9cd43f6a56a5b89484 Mon Sep 17 00:00:00 2001 From: Randall-Mysten <109545725+randall-Mysten@users.noreply.github.com> Date: Fri, 21 Oct 2022 17:11:57 -0700 Subject: [PATCH] Updating install command to use node not gateway (#5463) --- doc/src/build/fullnode.md | 2 +- doc/src/build/install.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/src/build/fullnode.md b/doc/src/build/fullnode.md index e608141597d16..aa3175748f64f 100644 --- a/doc/src/build/fullnode.md +++ b/doc/src/build/fullnode.md @@ -53,7 +53,7 @@ Minimum hardware requirements for running a Sui Full node: ### Software requirements We recommend running Sui Full nodes on Linux. Sui supports the Ubuntu and -Debian distributions. +Debian distributions. You can also run a Sui Full node on macOS. Make sure to update [Rust](../build/install.md#rust). diff --git a/doc/src/build/install.md b/doc/src/build/install.md index 6e05e80557eda..1b00033411794 100644 --- a/doc/src/build/install.md +++ b/doc/src/build/install.md @@ -192,12 +192,12 @@ Sui requires the following additional tools on computers running Windows. After you install Cargo, use the following command to install Sui binaries: ```shell -$ cargo install --locked --git https://github.com/MystenLabs/sui.git --branch "devnet" sui sui-gateway +$ cargo install --locked --git https://github.com/MystenLabs/sui.git --branch devnet sui sui-node ``` The command installs the following Sui components in `~/.cargo/bin`: * [`sui`](cli-client.md) - The Sui CLI tool contains subcommands for enabling `genesis` of validators and accounts, starting the Sui network, and [building and testing Move packages](move/index.md), as well as a [client](cli-client.md) for interacting with the Sui network. -* [`rpc-server`](json-rpc.md) - run a local Sui gateway service accessible via an RPC interface. +* `Sui node` - installs the Sui node binary. Trouble shooting: If the previous command fails, make sure you have the latest version of Rust installed: