Skip to content
This repository has been archived by the owner on Jul 30, 2024. It is now read-only.

Installation

Kimmo Huoman edited this page Jun 18, 2013 · 22 revisions

Manually installing pyfibot to a virtualenv

Preconditions

You'll need a few system packages to install the bot; build-essential and python-dev to install Twisted. Additionally IMDb integration and title fetching need lxml, so both libxml2-dev and libxslt-devare required.

You can install them all with:

sudo apt-get install build-essential python-dev libxml2-dev libxslt-dev libssl-dev zlib1g-dev

Method 1

$ git clone git://github.com/lepinkainen/pyfibot.git
$ cd pyfibot
$ python bootstrap.py --no-site-packages

Method 2

$ git clone git://github.com/lepinkainen/pyfibot.git
$ cd pyfibot
$ virtualenv --no-site-packages .
$ bin/pip install -r requirements.txt

Now you can edit the example configuration to suit your needs and rename it to config.yml

cp example.yml config.yml
$ $EDITOR config.yml
$ ./run.sh

Now the bot should be up and running.

Clone this wiki locally