On Fri, Oct 16, 2009 at 3:57 PM, Matt Feifarek <[email protected]> wrote: > On Fri, Oct 16, 2009 at 1:04 PM, Ian Bicking <[email protected]> wrote: >> I don't use paster serve, and wouldn't recommend it. You can/should >> use paste.deploy.loadapp('development.ini') in your main.py or >> runner.py or whatever script, and then use dev_appserver. > > Would you mind expanding on that a little bit? Why don't you recommend it?
I'm note sure if he meant "never use paster serve" or "just don't use it for App Engine apps". > It *seemed* to me that once appengine-homedir got running, the VE is > basically moot; you no longer run the devappserver from it, right? It's mainly used for installing packages. You may realize later you need a different package, or want to upgrade the ones you have. Without virtualenv, you'll have to have a global copy of Setuptools installed, and will have to specify the destination path every time you install something (because you're not installing into the default site-packages any more). Or create a distutils.cfg specifiying the install location. -- Mike Orr <[email protected]> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pylons-discuss" 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/pylons-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
