> For the complete documentation index, see [llms.txt](https://ola-2.gitbook.io/ola-developer-documents/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ola-2.gitbook.io/ola-developer-documents/quick_start/setup_environment.md).

# Setup Environment

To interact with the Ola network and compile Ola-lang code, you need to install the command-line tool Olatte.

## Installing Olatte

If you’re running macOS, Linux, or another Unix-like OS. To download Olatte and install Olatte, run the following in your terminal, then follow the on-screen instructions.

```shell
curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/Sin7Y/ola-os/pre-alpha/ola-cli.sh | bash
```

**Note for Linux users**: Olatte requires a relatively new version of the operating system due to dependencies on certain libraries. For Ubuntu, the minimum version required is Ubuntu 22.04.

## Installing Olatte(Windows)

If you’re running windows. You can click on the link to download the binary file for [GitHub Windows Release](https://github.com/Sin7Y/ola-os/releases/download/pre-alpha/ola_node-windows.exe).

After downloading, you need to configure the environment variables of Windows to ensure that it can be used in the command line.

## Set up environment variables for Olatte

Setting environment variables for Olatte can make the Olatte command more concise and enhance its readability.

**OLA\_KEYSTORE** The location of the keystore file for the Signer.

You can set the OLA\_KEYSTORE environment variable using the following command:

```shell
export OLA_KEYSTORE=~/.ola-wallets/deployer/keystore.json
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://ola-2.gitbook.io/ola-developer-documents/quick_start/setup_environment.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
