> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tilebox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Installation

> Install and set up the Tilebox Go SDK and its companion code generation tool to start building workflows and accessing datasets from your applications.

## Package Overview

Tilebox offers a Go SDK for accessing Tilebox services. It additionally includes a command-line tool (tilebox-generate) that can be installed separately.

<Columns cols={2}>
  <Card title="tilebox-go" icon="golang" href="https://github.com/tilebox/tilebox-go" horizontal>
    Datasets and workflows client for Tilebox
  </Card>

  <Card title="tilebox-generate" icon="terminal" href="https://github.com/tilebox/tilebox-generate" horizontal>
    Command-line tool to generate Tilebox datasets types for Go
  </Card>
</Columns>

## Installation

Add `tilebox-go` to your project.

```bash Shell theme={"system"}
go get github.com/tilebox/tilebox-go
```

Install `tilebox-generate` command-line tool on your machine.

```bash Shell theme={"system"}
go install github.com/tilebox/tilebox-generate@latest
```
