Linux (Debian / Ubuntu) workstation
1. Install toolchains
The following commands will install necessary dependencies:
# Install Rust (if already installed, ensure rustc version 1.73.0 or higher):
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# Download required packages:
apt update && apt install pkg-config libglib2.0-dev libssl-dev libpango1.0-dev
# Install wasm-pack for web builds
cargo install wasm-pack
# Install the Pax CLI
cargo install pax-cli
2. Run
Create a new project and run it:
pax-cli new my-first-project && cd my-first-project && pax-cli run