sui-install
Original:🇺🇸 English
Translated
Installing, updating, and managing Sui CLI versions with suiup. Use this skill when the user needs to install Sui, update to a newer version, switch between network-specific versions, resolve "command not found" or version mismatch errors, install additional toolchain components (Walrus, MVR, Move Analyzer), or troubleshoot suiup commands. Also use when the user sees "client/server api version mismatch" warnings or asks about suiup install, update, switch, or show.
4installs
Sourcemystenlabs/skills
Added on
NPX Install
npx skill4agent add mystenlabs/skills sui-installTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Setup & Installation
MCP tool: When available in your environment, also query the Sui documentation MCP server () for up-to-date answers. Use it for verification and for details not covered by these reference files.https://sui.mcp.kapa.ai
Source constraint: All information sourced exclusively from docs.sui.io.
System requirements
Sui supports:
- Linux: Ubuntu 22.04 (Jammy Jellyfish) or newer
- macOS: Monterey or newer
- Windows: Windows 10 or 11
Installing Sui
suiup (recommended)
suiupbash
curl -sSfL https://raw.githubusercontent.com/MystenLabs/suiup/main/install.sh | shWindows note: The command requires a Unix shell. On Windows, use WSL (Windows Subsystem for Linux) to run the command above, or install through Chocolatey instead (see alternative methods below).
curl | shAfter installing suiup, install the Sui CLI targeting a specific network. The CLI version must match the target network — each network runs a specific protocol version, and a mismatched CLI can cause build failures, transaction errors, or unexpected behavior:
bash
suiup install sui@testnet # install the Testnet-compatible version
suiup install sui@mainnet # install the Mainnet-compatible versionUpdate to the latest version:
bash
suiup update sui@testnetImportant: downloads the new version but does not automatically make it the active default. After updating, you must switch to the new version:
suiup updatebash
suiup switch sui@testnet # set the latest installed testnet version as defaultTo verify which versions are installed and which is active:
bash
suiup show # list all installed binaries and their default statussuiup command reference
| Command | Syntax | What it does |
|---|---|---|
| | Download and install a binary for a network |
| | Download the latest version (does NOT switch to it) |
| | Set the latest installed version for a network as the active default |
| | List all installed binaries with versions and defaults |
| | Show which installed binaries have updates available and the command to update them |
| | Update suiup itself |
The command takes a argument (for example, , , ). It does not accept separate positional arguments like .
switchbinary@networksui@testnetwalrus@testnetmove-analyzer@testnetsuiup switch sui testnet v1.70.2Alternative methods
- Homebrew (macOS/Linux):
brew install sui - Chocolatey (Windows):
choco install sui
These alternatives do not support installing additional Sui Stack components like Walrus or MVR and might take several minutes if prerequisites are not already installed.
Verify installation
bash
sui --versionIf the command returns "sui not found", run to set the active default. Do not suggest manual PATH manipulation () or reinstalling — is the correct fix.
suiup switch sui@testnetexport PATH=...suiup switchVersion management
Keeping Sui up to date
The CLI version should match the target network — each network runs a specific protocol version, and a mismatched CLI can cause build failures or transaction errors. Use the suffix to update to the correct version:
@networkbash
suiup update sui@testnet # update to latest Testnet version
suiup update sui@mainnet # update to latest Mainnet versionVersion mismatches
The CLI version must match the network you are targeting. Common symptoms of a mismatch:
- Build errors mentioning "old dependencies"
- Transaction failures on publish
- Unexpected behavior after network upgrades
Check your version against the network:
bash
sui --version # your installed version
sui client active-env # which network you are targetingIf the version is out of date, update and switch:
bash
suiup update sui@testnet # download the latest version
suiup switch sui@testnet # make it the active default
suiup show # verify which version is now activeThe warning in CLI output means your local CLI is older than the network. Do not ignore this warning — version mismatches can cause build failures and unexpected behavior. Update and switch to fix it.
client/server api version mismatchOptional additional tools
Install these only when the user explicitly asks for the tool. They are not part of default setup.
bash
suiup install move-analyzer # Move Language Server
suiup install mvr # Move Registry CLI (onchain package manager)
suiup install walrus # Walrus CLI for decentralized storage
suiup install site-builder # Walrus site builderAfter installing, switch each tool to make it the active default:
bash
suiup switch move-analyzer@testnet
suiup switch walrus@testnet