On Tue, Apr 29, 2008 at 5:58 PM, Seth <[EMAIL PROTECTED]> wrote:
>
>  I just followed the "rough docs" for installing 2.0 and everything
>  seemed to work fine until I got to the paster command... Now I'm
>  getting the following errors:
>
>  $ paster quickstart
>  Traceback (most recent call last):
>   File "/usr/bin/paster", line 8, in <module>
>     load_entry_point('PasteScript==1.6.3dev-r7327', 'console_scripts',
>  'paster')()
>   File "/usr/lib/python2.5/site-packages/PasteScript-1.6.3dev_r7327-
>  py2.5.egg/paste/script/command.py", line 78, in run
>     command = commands[command_name].load()
>   File "/usr/lib/python2.5/site-packages/pkg_resources.py", line 1911,
>  in load
>     if require: self.require(env, installer)
>   File "/usr/lib/python2.5/site-packages/pkg_resources.py", line 1924,
>  in require
>
>  working_set.resolve(self.dist.requires(self.extras),env,installer))
>   File "/usr/lib/python2.5/site-packages/pkg_resources.py", line 528,
>  in resolve
>     raise VersionConflict(dist,req) # XXX put more info here
>  pkg_resources.VersionConflict: (PyProtocols 0.9.3 (/usr/lib/python2.5/
>  site-packages/PyProtocols-0.9.3-py2.5-linux-i686.egg),
>  Requirement.parse('PyProtocols>=1.0a0dev-r2302'))
>
>  Seems to be complaining about PyProtocols, however an "easy_install -U
>  PyProtocols" pulls down the v0.9.3.

this is expected. the required version of pyprotocols is unreleased so
the -U won't work as that only upgrades to released versions. you can
fixt this either by
easy_install PyProtocols==1.0a0dev-r2302 (i'm not sure of that's the
correct syntax) or
easy_isntall PyProtocols==dev , which will get you current trunk.

now the above shouldn't have happen if you ran python setup.py develop
on both tg2 and pylons as they should have resolved the above issue.

as a side note tg2 questions belong to the turbogears-trunk mailing list.
>
>  Please advise.
>  Thanks,
>  Seth
>
>  >
>

--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to