Jim Steil schrieb: > I've just setup a new windows machine with Python 2.5 and TG 1.09 using > virtualenv. > ... > (tg1) C:\PyWork\motion>start-motion.py > ... > pkg_resources.DistributionNotFound: TurboGears > ... > Any ideas what I got wrong? The TG app was created on a system without > virtualenv installed.
I'm pretty sure this happened because you started your app with "start-motion.py", not with "python start-motion.py". Therefore, the the standard Python interpreter was used, not the one in the virtual environment. The former is looking in the global site packages and does not find TurboGears since you haven't installed it there. -- Christoph --~--~---------~--~----~------------~-------~--~----~ 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?hl=en -~----------~----~----~----~------~----~------~--~---

