Mac

I don't have a Mac, this is pretty much a 1 to 1 rip from Bird Bot's GitBook!

1. Download Git

To download Git, use the installer from here. It should download as a dmg file.

Open the dmg and you will see a .pkg file. Double click it.

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

2. Download Python

To download Python, use the installer from here. 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.

You can also watch a tutorial video here

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"

Then, type in the following

cd desktop
git clone https://github.com/pihelper/pi-bot-master
cd pi-bot-master

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

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

python3 app.py

After that, the bot should open up.

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

cd desktop/pi-bot-master
python3 app.py

Last updated