-
Notifications
You must be signed in to change notification settings - Fork 0
Anchor
Andrei Montchik edited this page Apr 15, 2026
·
1 revision
- API
- Sealevel Attacks and Mitigation examples
- Anchor Clients
- Anchor Types JavaScript
- Install Rust
- Install Solana
- Install Yarn, follow the Solana Web3.js Client installation steps.
- 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.
- Install additional dependencies in case if the AVM install fails:
- Confirm that AVM is installed successfully:
avm --version. - 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.
- the latest version: