On 5/10/06, Helio Pereira <[EMAIL PROTECTED]> wrote:
>
> hummm, when running that import  from python prompt I have the same
> error.
>
> Stange is this:
> >>> import paste
> >>> print paste.__file__

Paste is using a setuptools feature called "namespace packages". The
Paste top level package is actually built from several eggs.

I should have recommended that you try this from the Python prompt:

import pkg_resources
pkg_resources.require("PasteScript")
from paste.script import ...

I haven't seen any other reports of trouble with paste.script not
appearing after doing a standard install of TurboGears (though I note
that you're running from the svn trunk and not a completely standard
install.)

Kevin

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to