On Jan 6, 2008 9:06 PM, Matthew Scott <[EMAIL PROTECTED]> wrote: > > I'm trying to get Routes 1.7.1 and zc.buildout to cooperate, but > here's where it gets hung up: > > File "setup.py", line 1, in <module> > try: > ImportError: No module named ez_setup > [...] > Error: Couldn't install: Routes 1.7.1 > > I used "easy_install -eb. Routes==1.7.1" to see what that came up > with, and indeed, the setup.py in the tarball that it grabs refers to > ez_setup, which doesn't exist in the tarball.
I've had the same problem with Routes-dev. Comment out the ez_setup and use_setuptools lines at the top of setup.py: #from ez_setup import use_setuptools #use_setuptools() from setuptools import setup, find_packages Since you already have setuptools, you don't need to install it. There's a TRAC ticket for this. http://pylonshq.com/project/pylonshq/ticket/351 -- 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 -~----------~----~----~----~------~----~------~--~---
