Run your favorite chatbot in Zulip! 1. [Install errbot](https://errbot.readthedocs.io/en/latest/user_guide/setup.html) and follow to instructions to set up a `config.py`. 1. Check out our [Errbot integration package for Zulip](https://github.com/zulip/errbot-backend-zulip). Clone this repository somewhere convenient. 1. Install the requirements listed in `errbot-backend-zulip/requirements.txt`. 1. {!create-a-generic-bot.md!} 1. Download your Zulip bot's `zuliprc` config file. You will need its content for the next step. 1. Edit your ErrBot's `config.py`. Use the following template for a minimal configuration: import logging BACKEND = 'Zulip' BOT_EXTRA_BACKEND_DIR = r'' BOT_DATA_DIR = r'' BOT_EXTRA_PLUGIN_DIR = r'' BOT_LOG_FILE = r'' BOT_LOG_LEVEL = logging.INFO BOT_IDENTITY = { # Fill this with the corresponding values in your bot's `.zuliprc` 'email': '', 'key': '', 'site': '' } BOT_ADMINS = ('`. 1. [Start ErrBot](https://errbot.readthedocs.io/en/latest/user_guide/setup.html#starting-the-daemon). {!congrats.md!} ![Errbot message](/static/images/integrations/errbot/000.png) ### Tips * Rooms in ErrBot are streams in Zulip.