# Eager to try something COOL?

> **Interested in improving** [**the largest connectome to date**](https://www.janelia.org/news/unveiling-the-biggest-and-most-detailed-map-of-the-fly-brain-yet) **by yourself? Here are the instructions!**
>
> **For any questions, please contact Ting Zhao (<zhaot@janelia.hhmi.org>)**

## Requirements

* Active DVID database that supplies the hemibrain dataset. Visit [dvid.io](http://dvid.io) for more instructions.
* A modern Linux/Mac machine with a mainstream Graphics card
  * Make sure the machine can connect to the database

## Install NeuTu

```
curl -X GET https://raw.githubusercontent.com/janelia-flyem/NeuTu/master/neurolabi/shell/setup_neutu.sh > setup_neutu.sh
bash setup_neutu.sh <install_dir> neutu
```

{% hint style="info" %}
Note: \<install\_dir> is the path to where NeuTu will be installed. It is preferred to be a non-existing or empty directory.
{% endhint %}

## Start NeuTu

```
<install_dir>/bin/neutu
```

## Load Dataset from DVID

You can follow the instructions from [Get Started](/neutu/get-started.md) to open a dataset in NeuTu. You can also copy and paste the following settings to NeuTu after **replacing \<grayscale\_uuid> with the actual grayscale UUID**, assuming that the segmentation/synapse data are hosted on localhost:8000 with  and the grayscale data are hosted on localhost:8001 with uuid \<grayscale\_uuid>. For different server addresses, you need to replace the address settings accordingly.

```javascript
{
  "address": "localhost",
  "port": 8000,
  "name": "local_test",
  "default": false,
  "segmentation": "segmentation",
  "uuid": "52a1",
  "proofreading": true,
  "synapse": "synapses",
  "supervised": false,
  "@grayscale": [
    {
      "address": "localhost",
      "port": 8001,
      "background": 0,
      "gray_scale": "grayscale",
      "default": false,
      "uuid": "<grayscale_uuid>"
    }
  ]
}
```

![Paste Settings to Load DVID Dataset](/files/-LzCmcVOZ07YCijygWnd)


---

# 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://janelia-flyem.gitbook.io/neutu/get-started/eager-to-try-something-cool.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.
