Installation
Installing Rust on Different Operating Systems
1. Linux and macOS
To install Rust on Linux and macOS, use the rustup
script:
- Open your terminal.
- Run the following command:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
- Follow the on-screen instructions to complete the installation.
- After the installation, restart the terminal and verify it by running:
rustc --version
2. Windows
To install Rust on Windows, follow these steps:
- Download the
rustup-init.exe
installer from the official website: https://rust-lang.org/tools/install. - Run the installer and follow the setup instructions.
- After installation, open Command Prompt or PowerShell and verify Rust with:
rustc --version
Note: Rust will be added to your PATH automatically during installation.
Installing DumpSync in your Operational System
Once Rust is installed, use this command to install DumpSync:
cargo install dumpsync
This will install DumpSync globally, allowing you to run it from any directory.