# Software Installation

{% embed url="<https://youtu.be/_uUBRvdS7tg>" %}

{% embed url="<https://code.visualstudio.com/>" %}

```
#!/usr/bin/env pybricks-micropython
from pybricks.hubs import EV3Brick
from pybricks.parameters import Color

# setup section
ev3 = EV3Brick()
screen = ev3.screen
screen.clear()

# Main Program
screen.draw_text(10, 10, "Everything", text_color=Color.BLACK, background_color=None)
screen.draw_text(10, 30, "is", text_color=Color.BLACK, background_color=None)
screen.draw_text(10, 50, "Awesome!", text_color=Color.BLACK, background_color=None)

ev3.speaker.beep()

while (True):
    wait = 0
    
```


---

# 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://gilmour.online/compsci/robotics-7/software-installation.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.
