# Windows

## 1. Download Git

To download Git, use the installer from [here](https://git-scm.com/download/win). It should download as a exe file.

{% hint style="info" %}
You can also watch a tutorial video [here](https://www.youtube.com/watch?v=2j7fD92g-gE)&#x20;
{% endhint %}

![](https://613260287-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-M4tYcD4ZJuCWOF68IVn%2F-M4tmzBLKL4_rz7KSdtZ%2F-M4tnEbaXeDMGKjzPn61%2FScreen%20Shot%202020-04-14%20at%201.46.34%20PM.png?alt=media\&token=c7b6fc4e-279d-4f5d-a2da-0be2260c09e4)

Open the exe and you should see an installer.

![](https://613260287-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-M4tYcD4ZJuCWOF68IVn%2F-M4tnWOQh4SHhor441FI%2F-M4tnrFqO0SVBzVb5PRZ%2FScreen%20Shot%202020-04-14%20at%201.48.34%20PM.png?alt=media\&token=adcca21c-4447-44e3-a4a7-77fa6fd9a4be)

Once you get to this step, you can exit out the installer.

![](https://613260287-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-M4tYcD4ZJuCWOF68IVn%2F-M4tnWOQh4SHhor441FI%2F-M4tnyxPJqyHbN3z0sk8%2FScreen%20Shot%202020-04-14%20at%201.49.40%20PM.png?alt=media\&token=b966825f-f82b-4e5b-a8f3-3a97d4b593c1)

## 2. Download Python

To download Python, use the installer from [here](https://www.python.org/ftp/python/3.8.2/python-3.8.2-amd64.exe). It should download as a .exe file.&#x20;

![](https://613260287-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-M4tYcD4ZJuCWOF68IVn%2F-M4tnWOQh4SHhor441FI%2F-M4topJhDkJD4QyYTHPo%2FScreen%20Shot%202020-04-14%20at%201.53.25%20PM.png?alt=media\&token=9fb4d49c-7934-4811-96ed-b8ddd08a0536)

Before running it, **PLEASE DO THE FOLLOWING**

Find where the installer is located and right click on it. Select "run as administrator"

![](https://613260287-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-M4tYcD4ZJuCWOF68IVn%2F-M4tnWOQh4SHhor441FI%2F-M4tpAAFFUp9Ft-kVTdE%2FScreen%20Shot%202020-04-14%20at%201.54.58%20PM.png?alt=media\&token=e65daaf2-6faa-4673-9035-4760651c7abf)

An installer window will appear. **Make sure to click "add python 3.8 to path"**

![](https://613260287-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-M4tYcD4ZJuCWOF68IVn%2F-M4tnWOQh4SHhor441FI%2F-M4tqd-BUcoprLHammiP%2Fpath.png?alt=media\&token=939316d0-ecef-4555-a2bd-283caa9d0adc)

After that, click "install now" to install Python.

## 3. Download the bot

To start, open a new cmd window. If you don't know how to open cmd, you can find it by going to search and typing in "terminal"

![](https://613260287-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-M4tYcD4ZJuCWOF68IVn%2F-M4tnWOQh4SHhor441FI%2F-M4tsoaoVjLHNGCYZtOd%2Fbeforecommands.png?alt=media\&token=02a07137-dd00-423d-9fef-3e0a0768418c)

Then, type in the following

```bash
cd desktop
```

```bash
git clone https://github.com/natewong1313/bird-bot
```

```bash
cd bird-bot
```

![](https://613260287-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-M4tYcD4ZJuCWOF68IVn%2F-M4ttBZnrio-rOvMABbE%2F-M4tuMjq3eXoN74TQtCx%2Faftercommands.png?alt=media\&token=58b5db5c-cea7-4d10-8edc-54e8e31c981c)

After that, you will need to install the Python modules that help power the bot. To do this, type in the following

```bash
pip install -r requirements.txt --user
```

![](https://613260287-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-M4tYcD4ZJuCWOF68IVn%2F-M4ttBZnrio-rOvMABbE%2F-M4tuqcoLmSFJbSmY9CS%2FScreen%20Shot%202020-04-14%20at%202.19.54%20PM.png?alt=media\&token=6fc14f74-0c1c-41e3-98cb-d9b6b1d6290b)

You may get this error. If so, run the following command

```bash
pip install pycryptodomex
```

![](https://613260287-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-M4tYcD4ZJuCWOF68IVn%2F-M4ttBZnrio-rOvMABbE%2F-M4tviJiZGShennRrE5x%2Ftest1.png?alt=media\&token=479f9a35-5926-41d6-9ca1-aefe27508bc5)

## 4. Run the bot

To run the bot, simply type

```bash
python app.py
```

After that, the bot should open up.&#x20;

If you want to run the bot again, simply run that same command again in the same cmd window. **If you exit out of the cmd window and want to run the bot again, open up a new cmd window and run these commands**

```bash
cd desktop/bird-bot
```

```bash
python app.py
```


---

# 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://nateskicks13.gitbook.io/bird-bot/installation/windows.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.
