# Install the Solana Tool Suite CLI

### MacOS & Linux

* Open your favorite Terminal application
* Install the Solana release [v1.11.10](https://github.com/solana-labs/solana/releases/tag/v1.11.10) on your machine by running:\\

{% code overflow="wrap" %}

```
sh -c "$(curl -sSfL https://release.solana.com/v1.11.10/install)"
```

{% endcode %}

* You can replace `v1.11.10` with the release tag matching the software version of your desired release, or use one of the three symbolic channel names: <mark style="color:blue;">`stable`</mark>, <mark style="color:blue;">`beta`</mark>, or <mark style="color:blue;">`edge`</mark>.

### Windows

* Open a Command Prompt (`cmd.exe`) as an Administrator
  * Search for Command Prompt in the Windows search bar. When the Command Prompt app appears, right-click and select “Open as Administrator”. If you are prompted by a pop-up window asking “Do you want to allow this app to make changes to your device?”, click Yes.
* Copy and paste the following command, then press Enter to download the Solana installer into a temporary directory:

{% code overflow="wrap" %}

```
curl https://release.solana.com/v1.11.10/solana-install-init-x86_64-pc-windows-msvc.exe --output C:\solana-install-tmp\solana-install-init.exe --create-dirs
```

{% endcode %}

* Copy and paste the following command, then press Enter to install the latest version of Solana. If you see a security pop-up by your system, please select to allow the program to run.

```
C:\solana-install-tmp\solana-install-init.exe v1.11.10
```

* When the installer is finished, press Enter.
* Close the command prompt window and re-open a new command prompt window as a normal user
* Confirm you have the desired version of `solana` installed by entering:

```
solana --version
```

* After a successful install, <mark style="color:blue;">`solana-install`</mark>` ``update` may be used to easily update the Solana software to a newer version at any time.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://sebastian-solano.gitbook.io/solana-development-bible/install-the-solana-tool-suite-cli.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
