Am 05.03.2007 um 22:32 schrieb Emmanuel Blot: > Hi, > > I'm missing something obvious, how to execute Trac in-place as it was > possible before the deployment of setuptools? > > To set up a development version of Trac, the following command is > used: > > python setup.py develop --install-dir = <path>
You don't actually need that... it's a convience if you're working on only a single version (say, a trunk checkout), but isn't helpful if you need to work with multiple branches. What I'd recommend is simply running from source, without either "setup.py develop" or "setup.py install": $ svn co http://svn.edgewall.org/repos/trac/trunk $ ./setup.py egg_info $ PYTHONPATH=. python trac/admin/console.py ... (for trac-admin) $ PYTHONPATH=. python trac/web/standalone.py ... (for tracd) The egg_info command is required to create the initial egg meta-data after a new checkout, and whenever anything relevant in setup.py changes. The trac-admin and tracd scripts are executed directly, not via wrapper scripts. Hope that helps, Chris -- Christopher Lenz cmlenz at gmx.de http://www.cmlenz.net/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Development" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-dev?hl=en -~----------~----~----~----~------~----~------~--~---
