This guide helps you resolve common issues when setting up and developing Aqua Stark locally.
- Setup Issues
- Blockchain Issues
- Frontend Issues
- Backend Issues
- Environment Issues
- Performance Issues
- Platform-Specific Issues
Symptoms: sozo: command not found, katana: command not found, etc.
Solutions:
- Check PATH configuration:
echo $PATH
which sozo
which katana
which torii- Reinstall Dojo tools:
curl -L https://install.dojoengine.org | bash
export PATH="$HOME/.dojo/bin:$PATH"- Add to shell profile (add to
~/.bashrc,~/.zshrc, or~/.profile):
export PATH="$HOME/.dojo/bin:$PATH"Symptoms: Dependency installation errors, lockfile conflicts
Solutions:
- Clear cache and reinstall:
pnpm store prune
rm -rf node_modules
rm pnpm-lock.yaml
pnpm install --force- Check Node.js version:
node --version # Should be 20+
pnpm --version # Should be 10.13.1+- Update pnpm:
npm install -g pnpm@latestSymptoms: cargo: command not found, Scarb build failures
Solutions:
- Reinstall Rust:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
source ~/.cargo/env- Reinstall Scarb:
curl --proto '=https' --tlsv1.2 -sSf https://docs.swmansion.com/scarb/install.sh | sh- Check versions:
rustc --version
cargo --version
scarb --version