Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 857 Bytes

File metadata and controls

39 lines (27 loc) · 857 Bytes

Installation

Installation

Install Rust

Windows

  1. Download and install rustup-init.exe
  2. Install "Desktop development with C++" with Build Tools for Visual Studio 2019
  3. Start a new PowerShell to enable cargo

Linux and MacOS

  1. Install rust:

    curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
    
  2. Enable cargo in the current shell:

    source $HOME/.cargo/env
    

Setup Scrypto simulator

  1. Add WebAssembly target

    rustup target add wasm32-unknown-unknown
    
  2. Install the simulator

    git clone https://github.com/radixdlt/radixdlt-scrypto.git
    cd radixdlt-scrypto
    cargo install --path ./simulator