Installation
This section covers the steps to set up your local environment for Solana development.
Install Dependencies
- Windows users must first install WSL (Windows subsystem for Linux) and then install the dependencies specified in the Linux section below.
- Linux users should first install the dependencies specified in the Linux section below.
- Mac users should start with the Rust installation instructions below.
Install Rust
Solana programs are written in the Rust programming language.
The recommended installation method for Rust is rustup.
Run the following command to install Rust:
You should see the following message after the installation completes:
Run the following command to reload your PATH environment variable to include Cargo's bin directory:
To verify that the installation was successful, check the Rust version:
You should see output similar to the following:
Install the Solana CLI
The Solana CLI provides all the tools required to build and deploy Solana programs.
Install the Solana CLI tool suite using the official install command:
You can replace stable
with the release tag matching the software version of
your desired release (i.e. v2.0.3
), or use one of the three symbolic channel
names: stable
, beta
, or edge
.
If it is your first time installing the Solana CLI, you may see the following message prompting you to add a PATH environment variable:
If you are using a Linux or WSL terminal, you can add the PATH environment variable to your shell configuration file by running the command logged from the installation or by restarting your terminal.
To verify that the installation was successful, check the Solana CLI version:
You should see output similar to the following:
You can view all available versions on the Agave Github repo.
Agave is the validator client from Anza, formerly known as Solana Labs validator client.
To later update the Solana CLI to the latest version, you can use the following command:
Install Anchor CLI
Anchor is a framework for developing Solana programs. The Anchor framework leverages Rust macros to simplify the process of writing Solana programs.
There are two ways to install the Anchor CLI and tooling:
- Using Anchor Version Manager (AVM) - is the recommended installation method since it simplifies updating Anchor versions in the future
- Without AVM - this requires more a manual process to update Anchor versions later
The Anchor version manager (AVM) allows you to install and manage different Anchor versions on your system, including more easily updating Anchor versions in the future.
Install AVM with the following command:
Test to ensure AVM was installed and is accessible:
Install the latest version of Anchor CLI using AVM:
Or install a specific version of the Anchor CLI by declaring which version you want to install:
Don't forget to run the
avm use
command to declare which Anchor CLI version should be used on your system.
- If you installed the
latest
version, runavm use latest
.- If you installed the version
0.30.1
, runavm use 0.30.1
.
You may see the following warning during installation. However, it does not affect the installation process.
To verify that the installation was successful, check the Anchor CLI version:
You should see output similar to the following:
When installing the Anchor CLI on Linux or WSL, you may encounter this error:
If you see this error message, follow these steps:
- Install the dependencies listed in the Linux section at the top of this page.
- Retry installing the Anchor CLI.
Node.js and Yarn
Node.js and Yarn are required to run the default Anchor project test file
(TypeScript) created with the anchor init
command. (Rust test template is also
available using anchor init --test-template rust
)
When running anchor build
, if you encounter similar errors following:
After applying either solution, attempt to run anchor build
again.
If you are on Linux or WSL and encounter the following errors when running
anchor test
after creating a new Anchor project, it's may be due to missing
Node.js or Yarn:
Solana CLI Basics
This section will walk through some common Solana CLI commands to get you started.
Solana Config
To see your current config:
You should see output similar to the following:
The RPC URL and Websocket URL specify the Solana cluster the CLI will make requests to. By default this will be mainnet-beta.
You can update the Solana CLI cluster using the following commands:
You can also use the following short options:
The Keypair Path specifies the location of the default wallet used by the Solana
CLI (to pay transaction fees and deploy programs). The default path is
~/.config/solana/id.json
. The next step walks through how to generate a
keypair at the default location.
Create Wallet
To interact with the Solana network using the Solana CLI, you need a Solana wallet funded with SOL.
To generate a keypair at the default Keypair Path, run the following command:
You should see output similar to the following:
If you already have a file system wallet saved at the default location, this
command will NOT override it unless you explicitly force override using the
--force
flag.
Once a keypair is generated, you can get the address (public key) of the keypair with the following command:
Airdrop SOL
Once you've set up your local wallet, request an airdrop of SOL to fund your wallet. You need SOL to pay for transaction fees and to deploy programs.
Set your cluster to the devnet:
Then request an airdrop of devnet SOL:
To check your wallet's SOL balance, run the following command:
The solana airdrop
command is currently limited to 5 SOL per request on
devnet. Errors are likely due to rate limits.
Alternatively, you can get devnet SOL using the Solana Web Faucet.
Run Local Validator
The Solana CLI comes with the test validator built-in. Running a local validator will allow you to deploy and test your programs locally.
In a separate terminal, run the following command to start a local validator:
In WSL you may need to first navigate to a folder where you have default write access:
Make sure to update the Solana CLI config to localhost before commands.