Skip to content

Commit

Permalink
Updating install command to use node not gateway (MystenLabs#5463)
Browse files Browse the repository at this point in the history
  • Loading branch information
randall-Mysten authored Oct 22, 2022
1 parent 67b789e commit a3b901b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/src/build/fullnode.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down
4 changes: 2 additions & 2 deletions doc/src/build/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit a3b901b

Please sign in to comment.