source: products/quintagroup.catalogbrainspatch/trunk/docs/INSTALL.txt @ 3664

Last change on this file since 3664 was 513, checked in by piv, 18 years ago

updated HISTORY.txt

File size: 1.3 KB
Line 
1quintagroup.catalogbrainspatch Installation
2==========================
3
4To install quintagroup.catalogbrainspatch into the global Python environment (or a workingenv),
5using a traditional Zope 2 instance, you can do this:
6
7 * When you're reading this you have probably already run
8   ``easy_install quintagroup.catalogbrainspatch``. Find out how to install setuptools
9   (and EasyInstall) here:
10   http://peak.telecommunity.com/DevCenter/EasyInstall
11
12 * Create a file called ``quintagroup.catalogbrainspatch-configure.zcml`` in the
13   ``/path/to/instance/etc/package-includes`` directory.  The file
14   should only contain this::
15
16       <include package="quintagroup.catalogbrainspatch" />
17
18
19Alternatively, if you are using zc.buildout and the plone.recipe.zope2instance
20recipe to manage your project, you can do this:
21
22 * Add ``quintagroup.catalogbrainspatch`` to the list of eggs to install, e.g.:
23 
24    [buildout]
25    ...
26    eggs =
27        ...
28        quintagroup.catalogbrainspatch
29       
30  * Tell the plone.recipe.zope2instance recipe to install a ZCML slug:
31 
32    [instance]
33    recipe = plone.recipe.zope2instance
34    ...
35    zcml =
36        quintagroup.catalogbrainspatch
37       
38  * Re-run buildout, e.g. with:
39 
40    $ ./bin/buildout
41       
42You can skip the ZCML slug if you are going to explicitly include the package
43from another package's configure.zcml file.
Note: See TracBrowser for help on using the repository browser.