> For the complete documentation index, see [llms.txt](https://docs.landslide.network/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.landslide.network/fundamentals/getting-set-up.md).

# Getting set up

### Installation

1. Ensure that you have Go installed on your computer. You can download and install the latest version of Go from the official website at <https://golang.org/dl/>.
2. Clone the LandslideCore repository to your local machine by running the following command:

   ```bash
   git clone https://github.com/ConsiderItDone/LandslideCore.git
   ```
3. Once you have cloned the repository, navigate to the root directory of the repository in your terminal.
4. Build the LandslideCore binary by running the following command:

   ```go
   make build
   ```

   This will create the `landslide` binary in the `build` directory.
5. Optionally, you can install the LandslideCore binary system-wide by running the following command:

   ```go
   make install
   ```

   This will copy the `landslide` binary to `/usr/local/bin`, making it accessible from anywhere on your system.

If you encounter any issues during the installation process, please refer to the documentation or open an issue on the LandslideCore repository for assistance.


---

# 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:

```
GET https://docs.landslide.network/fundamentals/getting-set-up.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.
