philippe lemarre schrieb: > While installing tg2b7 in a fresh virtualenv with > > easy_install -i http://www.turbogears.org/2.0/downloads/current/index > tg.devtools > > > I received : > > Using > /home/phil/comp/tg2b7/lib/python2.5/site-packages/tg.devtools-2.0b7-py2.5.egg > > Processing dependencies for tg.devtools > > error: Installed distribution simplejson 1.9.2 conflicts with requirement > simplejson>=2.0.4
The error is pretty clear I'd say. You have a installed simplejson. In your VE-python, do >>> import simplejson >>> simplejson.__file__ and remove the found version from there - most probably your system's python site-packages. While doing that, you might want to look for other packages that reside their & may conflict. Diez --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

