| description | Install the Move Registry (MVR) CLI to publish, discover, and manage reusable Move packages for Sui development. |
|---|
Move Registry (MVR) is a package manager for Move. It allows anyone to publish and use published packages in new applications written in Move. Local binary allows searching packages in the registry as well as installing them as a part of the Sui CLI build process.
The best way to install MVR is by using suiup. Suiup
provides an easy way to update and manage different versions of binaries.
Installation instructions for suiup can be found
in the repository README.
To install Move Registry CLI, run the following command:
suiup install mvrAfter installation, Move Registry will be available as mvr.
You can download the latest MVR binary from the
releases page. The binary is available for macOS,
Linux and Windows. Unlike Sui, the MVR binary is not changing between
environments and supports both testnet and mainnet.
You can install and build MVR locally by using Cargo (requires Rust)
cargo install --locked --git https://github.com/mystenlabs/mvr --branch release mvrFor troubleshooting the installation process, please refer to the Install MVR Guide.
To learn how to find packages in the registry and use them as dependencies in your projects, see the Using Move Registry guide.