> 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/common-errors-1/opening-the-bot.md).

# Opening The Bot

## 'pip' is not recognized

Python was not installed correctly on your machine.&#x20;

## ModuleNotFoundError: No module named xx

You likely don't have all modules installed correctly. Here is what to do

### Mac

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

### Windows

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

## No such file or directory

You need to be in the directory of Bird Bot. You will need to cd into its location and then run the desired command.


---

# 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:

```
GET https://nateskicks13.gitbook.io/bird-bot/common-errors-1/opening-the-bot.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.
