5 | | 1. Install [http://git-scm.com/ git]. |
6 | | 1. Install [https://www.python.org/download/releases/2.7.8/ Python 2.7]. |
7 | | 1. Install setuptools: download [https://bootstrap.pypa.io/ez_setup.py ez_setup.py] into a directory with no Unicode characters in the path, and run it using `python ez_setup.py`. |
8 | | 1. Run "`easy_install pip`". |
9 | | 1. Run "`pip install buildbot-slave`". Do this in a virtualenv if you prefer. (If this doesn't work, see the instructions on the [http://trac.buildbot.net/wiki/DownloadInstall Buildbot trac] for installing buildbot-slave.) |
| 5 | 1. Install [http://git-scm.com/ git] (ideally using your OS package manager) |
| 6 | 1. Install [https://www.python.org/download/releases/2.7.8/ Python 2.7] (ideally using your OS package manager) |
| 7 | 1. Install [https://virtualenv.pypa.io/en/stable/ virtualenv] (ideally using your OS package manager) |
| 8 | 1. Create a virtualenv for the Buildbot slave: `virtualenv /path/to/environment` |
| 9 | 1. Install the Buildbot slave software and dependencies in the virtualenv: `/path/to/environment/bin/pip install buildbot-slave==0.8.14` |
| 10 | 1. Use `buildslave` and `buildbot` commands from `/path/to/environment/bin/` in the steps detailed below to configure and start your buildslave (activate the virtualenv to put them on your `$PATH`: `. /path/to/environment/bin/activate`). |