# Installing Tools

To help us get setup with the tools and services for this workshop, (e.g.: Rust, Kafka), we have built a setup script that will perform all the automated installations and configurations.

### Step 1

In the main terminal at the bottom where it states `ArchConfWorkshopUser:~/environment $` run the following commands - one at a time.

```
aws s3 cp s3://iapp-archconf-workshop/workshop.sh workshop.sh
```

```
sudo chmod +x workshop.sh
```

```
./workshop.sh --workshop daas
```

```
source $HOME/.cargo/env
```

### Step 2

Let verify that Rust is installed correctly. Part of the `workshop` script was to create a `dummy` project, which should now appear as a directory in your left panel (file tree).

Let's run the `dummy` application.

```
cd dummy && cargo run
```

You should see the following:

```
ArchConfWorkshopUser:~/environment $ cd dummy && cargo run                                                                                                                                 
    Finished dev [unoptimized + debuginfo] target(s) in 0.00s
     Running `target/debug/dummy`
Hello, world!
```

Let's change back the main directory.

```
cd $HOME/environment
```


---

# 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://davidsietz.gitbook.io/daas-workshop/setting-up-you-machines/installing-tools.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.
