> For the complete documentation index, see [llms.txt](https://nateskicks13.gitbook.io/bird-bot/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://nateskicks13.gitbook.io/bird-bot/installation/mac.md).

# Mac

## 1. Download Git

To download Git, use the installer from [here](https://sourceforge.net/projects/git-osx-installer/). It should download as a dmg file.

{% hint style="info" %}
You can also watch a tutorial video [here](https://www.youtube.com/watch?v=sJ4zr0a4GAs)
{% endhint %}

![](/files/-M4taAixuM-LyGQGFcHZ)

Open the dmg and you will see a .pkg file. Double click it.&#x20;

![](/files/-M4tbDmC43qFLSkDozlH)

{% hint style="danger" %}
If you get a "cannot be opened because it is from an unidentified developer" message when trying to run the .pkg file, go to system preferences -> security and privacy -> and then click "open anyway" at the bottom. If you get stuck, watch a tutorial video [here](https://www.youtube.com/watch?v=yJoSrBe7Tpg).
{% endhint %}

You will then see an installer pop up. Navigate through the steps until it has finished downloading.

![](/files/-M4tbT54Y2g7j2VLAm6x)

## 2. Download Python&#x20;

To download Python, use the installer from [here](https://www.python.org/ftp/python/3.8.2/python-3.8.2-macosx10.9.pkg). It should download as a .pkg file. Double click it and you will then see an installer pop up. Navigate through the steps until it has finished downloading.

{% hint style="info" %}
You can also watch a tutorial video [here](https://www.youtube.com/watch?v=TgA4ObrowRg)
{% endhint %}

![](/files/-M4tcOGNJVPcSN7FJ8IY)

## 3. Download the bot

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

![](/files/-M4tdK_bEQ9d3TAhMYgp)

Then, type in the following

```bash
cd desktop
```

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

```bash
cd bird-bot
```

![](/files/-M4ttoLytzBHyy10Ozi0)

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

```bash
sudo pip3 install -r requirements.txt
```

It may prompt you to enter in your password. Type it and hit enter.

## 4. Run the bot

To run the bot, simply type&#x20;

```bash
python3 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 terminal window. **If you exit out of the terminal window and want to run the bot again, open up a new terminal window and run these commands**

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

```bash
python3 app.py
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://nateskicks13.gitbook.io/bird-bot/installation/mac.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
