On 20 Mag, 02:16, "Tom Longson (nym)" <[email protected]> wrote: > Hi all, > > I removed my project.egg_info directory, and ran into problems when I > recreated it with 'python setup.py egg_info'. As per feedback via #pylons I > changed setup.py to hav e the following line: > > paster_plugins = ["Pylons", "WebHelpers", "PasteScript"], > > ..and when I run 'python setup.py egg_info', paster_plugins.txt is created. > Nevertheless, running 'paster shell' gives me the same old message: > > Command 'shell' not known (you may need to run setup.py egg_info) > > Any help would be really appreciated! > > Cheers, > Tom Longson (nym)
Be sure paster_plugins.txt contains the lines "Pylons" and "PasteScript"; be sure you're running paster from the same directory the egg-info is in; be sure you're running paster from the same environment Pylons is installed in: for instance you may be running /usr/bin/paster while Pylons is installed in a VirtualEnv, or vice versa. What do "paster --help" and "paster --plugin=Pylons --help" say? Does "paster --plugin=Pylons shell development.ini" work? It should, even when you're outside of your project dir (assuming Pylons is installed properly). I don't see a reason for WebHelpers being in the paster_plugins list: 0.6.4 here looks has no entry point (thus no command) for paster. Cheers. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
