Re: [Distutils] Buildout: Version conflicts with system-wide libraries

2010-03-27 Thread Chris Withers
Jim Fulton wrote: And what does under review mean? Is there a development version of bootstrap.py somewhere that we use to can try the new feature? It means that there is a branch with the change that I need to review and merge. Anything we can do to help speed that up? Chris -- Simplistix

Re: [Distutils] Buildout: Version conflicts with system-wide libraries

2010-03-27 Thread Chris Withers
Gustavo Narea wrote: On 11/03/10 16:21, Yonsy Solis wrote: use virtualenv with --no-site-packages option, and run your buildout with the python from your virtualenv http://pypi.python.org/pypi/virtualenv Thanks, Yonsy. However I already do that :/ Huh? A virtual_env with

Re: [Distutils] Buildout: Version conflicts with system-wide libraries

2010-03-27 Thread Jean Daniel
It seems to me that once this feature is integrated, there will be less incentive to use virtualenv. What cool virtualenv features are left if buildout can do the --no-site-package? On Sat, Mar 27, 2010 at 7:30 PM, Chris Withers ch...@simplistix.co.uk wrote: Gustavo Narea wrote: On

Re: [Distutils] Buildout: Version conflicts with system-wide libraries

2010-03-27 Thread Marius Gedminas
On Sat, Mar 27, 2010 at 09:15:32PM +0100, Jean Daniel wrote: It seems to me that once this feature is integrated, there will be less incentive to use virtualenv. What cool virtualenv features are left if buildout can do the --no-site-package? I can easy_install a one-off development tool

Re: [Distutils] Buildout: Version conflicts with system-wide libraries

2010-03-27 Thread Chris Withers
Marius Gedminas wrote: * edit a config file I tend to create new mini-buildouts for this kind of thing... * re-run buildout and wait 15 seconds longer than it would take otherwise [1] I believe you're looking for either -o, if you have the eggs already, or the aforementioned mind

[Distutils] Buildout: Version conflicts with system-wide libraries

2010-03-11 Thread Gustavo Narea
Hello, On my Ubuntu desktop, httplib2 v0.4.0 is installed system-wide because it's required by many things. However, I need to use v0.6.0 of that package in my Buildout-powered project. But when I run Buildout, I get this error: = VersionConflict: (httplib2 0.4.0

Re: [Distutils] Buildout: Version conflicts with system-wide libraries

2010-03-11 Thread Jim Fulton
On Thu, Mar 11, 2010 at 10:32 AM, Gustavo Narea gustavona...@2degreesnetwork.com wrote: Hello, On my Ubuntu desktop, httplib2 v0.4.0 is installed system-wide because it's required by many things. However, I need to use v0.6.0 of that package in my Buildout-powered project. But when I run

Re: [Distutils] Buildout: Version conflicts with system-wide libraries

2010-03-11 Thread Martin Aspeli
Jim Fulton wrote: On Thu, Mar 11, 2010 at 10:32 AM, Gustavo Narea gustavona...@2degreesnetwork.com wrote: Hello, On my Ubuntu desktop, httplib2 v0.4.0 is installed system-wide because it's required by many things. However, I need to use v0.6.0 of that package in my Buildout-powered project.

Re: [Distutils] Buildout: Version conflicts with system-wide libraries

2010-03-11 Thread Gustavo Narea
Thanks, Yonsy. However I already do that :/ On 11/03/10 16:21, Yonsy Solis wrote: use virtualenv with --no-site-packages option, and run your buildout with the python from your virtualenv http://pypi.python.org/pypi/virtualenv -- Gustavo Narea. Software Developer. 2degrees, Ltd.

Re: [Distutils] Buildout: Version conflicts with system-wide libraries

2010-03-11 Thread Gustavo Narea
Thank you, Jim. I think I'll have to have a separate Python. Thank you! On 11/03/10 16:00, Jim Fulton wrote: There isn't currently an option to get buildout to ignore site-packages, although an option to do that is under review. Many of us simply avoid using system Python installs. I

Re: [Distutils] Buildout: Version conflicts with system-wide libraries

2010-03-11 Thread Attila Oláh
Hi, On Thu, Mar 11, 2010 at 17:14, Martin Aspeli optilude+li...@gmail.com wrote: Jim Fulton wrote: On Thu, Mar 11, 2010 at 10:32 AM, Gustavo Narea gustavona...@2degreesnetwork.com  wrote: Hello, On my Ubuntu desktop, httplib2 v0.4.0 is installed system-wide because it's required by many

Re: [Distutils] Buildout: Version conflicts with system-wide libraries

2010-03-11 Thread Yonsy Solis
On Thu, 2010-03-11 at 16:24 +, Gustavo Narea wrote: Thanks, Yonsy. However I already do that :/ don't work ? strange, with --no-site-packages u have a totally isolated python ... the same error happens ? -- Yonsy Solis Aureal Systems (mov) 989-124-141 (www) http://www.aureal.pe

Re: [Distutils] Buildout: Version conflicts with system-wide libraries

2010-03-11 Thread Yonsy Solis
On Thu, 2010-03-11 at 15:32 +, Gustavo Narea wrote: Hello, On my Ubuntu desktop, httplib2 v0.4.0 is installed system-wide because it's required by many things. However, I need to use v0.6.0 of that package in my Buildout-powered project. But when I run Buildout, I get this error:

Re: [Distutils] Buildout: Version conflicts with system-wide libraries

2010-03-11 Thread Sebastien Douche
On Thu, Mar 11, 2010 at 17:46, Yonsy Solis yo...@aureal.pe wrote: with --no-site-packages u have a totally isolated python ... Totally isolated? Not really. The only solution is, like Jim said, to install a new Python[1]. [1] Basic steps : - install the package build-essential - download the

Re: [Distutils] Buildout: Version conflicts with system-wide libraries

2010-03-11 Thread Jim Fulton
On Thu, Mar 11, 2010 at 11:44 AM, Attila Oláh attilao...@gmail.com wrote: ... There isn't currently an option to get buildout to ignore site-packages, although an option to do that is under review. Will this option be able to disregard the system-wide setuptools/Distribute? Yes. ... And