Skip to content
Andrei Montchik edited this page Apr 15, 2026 · 1 revision

Links

Dev Resources

References

  1. Install Rust
  2. Install Solana
  3. Install Yarn, follow the Solana Web3.js Client installation steps.
  4. Install Anchor Version Manager a.k.a. AVM: cargo install --git https://github.com/coral-xyz/anchor avm --locked --force.
    • Install additional dependencies in case if the AVM install fails: sudo apt-get update && sudo apt-get upgrade && sudo apt-get install -y pkg-config build-essential libudev-dev libssl-dev.
  5. Confirm that AVM is installed successfully: avm --version.
  6. Install Anchor:
    • the latest version: avm install latest; avm use latest.
    • or the specific version: avm install 0.29.0; avm use 0.29.0.

Clone this wiki locally