InstallationΒΆ

The easyiest way to install Checker is:

easy_install checker

This will give you an executable checker script in the same location as your other python global scripts.

Or, if you’re using zc.buildout, use the zc.recipe.egg recipe to get a checker script as follows:

buildout.cfg

[buildout]
parts = checker

[checker]
recipe = zc.recipe.egg
eggs = checker

This will give you an executable checker script in the bin directory of your buildout.

A recommended way to install Checker is to have the configuration folder be a subversion checkout containing buildout.cfg, bootstrap.py and your checker.txt.

Python version requirements

This package has been tested with Python 2.5, 2.6 and 2.7 on Linux, Mac OS X and Windows.

Previous topic

Checker documentation

Next topic

Using Checker

This Page