Arthur Clune wrote: > To clarify - I understand the basics of SVN, it's where to put the stuff > so python sees it and it doesn't conflict with existing egg versions > that I don't get.
That's actually pretty darned easy. $ svn co http://www.turbogears.org/svn/turbogears/branches/1.0 turbogears-1.0 $ cd turbogears-1.0 $ python setup.py develop That last "setup.py develop" command will configure your site-packages/easy-install.pth to point to your turbogears-1.0 directory (wherever on the filesystem you happened to put it) rather than to any eggs which might be installed. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" 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/turbogears -~----------~----~----~----~------~----~------~--~---

