On 3/30/06, Simon Steele <[EMAIL PROTECTED]> wrote:
> Also, when installing do all the packages need to be placed under the
> system site-packages or is there a way I can place them locally with my
> installed TurboGears app?

With recent versions of setuptools, I believe you can place the eggs
anywhere on the PYTHONPATH. So, your start script could probably
(untested)

import sys
sys.path.append("your directory")
import pkg_resources
pkg_resources.require("Your Package")


Kevin

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to