On Dec 14, 2006, at 5:47 PM, [EMAIL PROTECTED] wrote: > Python isn't difficult to learn and I have been able to play around > with Pylons easily. But while I can make my own projects from > scratch I > am having some difficulties with a Pylons project that I took over. > First of all, the command "paster controller apg" doesn't seem to > work. > I reckon the project was made with an older version of Pylons so > creating controllers involves some other odd command. This is the > error > I get:
Most likely you have lost a necessary paster-plugins file. It could be that this file was not checked into version control, and you checked out a revision without the egg_info properly setup. First, ensure your egg directory exists, go into your project and run: python setup.py egg_info Then inside the proj.egg-info directory, you should (make one if you don't) have a file called paster_plugins.txt that contains the following 3 lines: Pylons WebHelpers PasteScript Once you ensure that you have that present, running paster controller will work. HTH, Ben --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
