Solana DocumentationGetting Started
Quick Installation
A quick installation to set up your local Solana development environment with one command. Install Rust, the Solana CLI, and Anchor Framework on Windows (WSL), Linux, and Mac. (If preferred, you may install each dependency individually.)
Prerequisites
Installation
- Enter the following command into your terminal to install all the necessary dependencies:
Terminal
$curl --proto '=https' --tlsv1.2 -sSfL https://solana-install.solana.workers.dev | bash
A successful installation will return output like the following:
Example output
Installed Versions:Rust: rustc 1.90.0 (1159e78c4 2025-09-14)Solana CLI: solana-cli 2.3.13 (src:5466f459; feat:2142755730, client:Agave)Anchor CLI: 0.32.1Node.js: v24.10.0Yarn: 1.22.22
- Verify a successful installation by checking the version of each installed dependency.
Terminal
$rustc --version && solana --version && anchor --version && node --version && yarn --version
If the quick installation command fails, please refer to the Install Dependencies section below for instructions to install each dependency individually.
Is this page helpful?