Le 08/05/2011 05:45, George Wright a écrit : > Following the screencast Installing BlueBream Screencasts — BlueBream v1.0 > documentation <http://bluebream.zope.org/screencasts.html> > Using a newly installed Bluebream 1.0 on OSX 10.6.7 > > When I get to the ./bin/buildout stage it goes into an loop (infinite?) where > it > seems to be unhappy > using both 'distribute-0.6.14' and 'setuptools version 0.6c11' > Any suggestions? > > geomacbk:sampleproject georgewr$ sudo python bootstrap.py
Why sudo ? The bootstrap purpose is to install buildout in a sandbox so that you don't have to be administrator. The loop below is the sign of a conflict between Distribute and a system-wide setuptools, or something like that. First try to recreate your sample app from scratch. If this occurs again, try to upgrade your system-wide setuptools or distribute (this time with a sudo: sudo easy_install --upgrade distribute, or sudo pip install --upgrade distribute). > Password: > Creating directory '/Users/georgewr/sampleproject/bin'. > Creating directory '/Users/georgewr/sampleproject/parts'. > Creating directory '/Users/georgewr/sampleproject/develop-eggs'. > Generated script '/Users/georgewr/sampleproject/bin/buildout'. > geomacbk:sampleproject georgewr$ sudo ./bin/buildout > /Users/georgewr/sampleproject/parts/buildout/site.py:262: UserWarning: Module > pkg_resources was already imported from > /System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/pkg_resources.pyc, > but /Users/georgewr/.buildout/eggs/distribute-0.6.14-py2.6.egg is being added > to > sys.path > import pkg_resources > /Users/georgewr/sampleproject/parts/buildout/site.py:262: UserWarning: Module > site was already imported from > /Users/georgewr/sampleproject/parts/buildout/site.py, but > /Users/georgewr/.buildout/eggs/distribute-0.6.14-py2.6.egg is being added to > sys.path > import pkg_resources > Upgraded: > setuptools version 0.6c11; > restarting. > Generated script '/Users/georgewr/sampleproject/bin/buildout'. > /Users/georgewr/sampleproject/parts/buildout/site.py:262: UserWarning: Module > pkg_resources was already imported from > /System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/pkg_resources.pyc, > but /Users/georgewr/.buildout/eggs/distribute-0.6.14-py2.6.egg is being added > to > sys.path > import pkg_resources > /Users/georgewr/sampleproject/parts/buildout/site.py:262: UserWarning: Module > site was already imported from > /Users/georgewr/sampleproject/parts/buildout/site.pyc, but > /Users/georgewr/.buildout/eggs/distribute-0.6.14-py2.6.egg is being added to > sys.path > import pkg_resources > Upgraded: > setuptools version 0.6c11; > .... > etc > .... > > > George Wright > [email protected] <mailto:[email protected]> > > > > > > > > > _______________________________________________ > bluebream mailing list > [email protected] > https://mail.zope.org/mailman/listinfo/bluebream _______________________________________________ bluebream mailing list [email protected] https://mail.zope.org/mailman/listinfo/bluebream
