Re: [Distutils] setup.py install using pip

2015-12-23 Thread Robert Collins
Thanks for digging that up. -Rob On 24 December 2015 at 06:35, Erik Bray wrote: > On Thu, Dec 10, 2015 at 5:12 PM, Robert Collins > wrote: >> On 8 December 2015 at 09:14, Erik Bray wrote: >>> On Mon, Dec 7, 2015 at 2:40

Re: [Distutils] setup.py install using pip

2015-12-23 Thread Erik Bray
On Thu, Dec 10, 2015 at 5:12 PM, Robert Collins wrote: > On 8 December 2015 at 09:14, Erik Bray wrote: >> On Mon, Dec 7, 2015 at 2:40 PM, Paul Moore wrote: >>> On 7 December 2015 at 18:58, Erik Bray

Re: [Distutils] Building and installing packages on a (unix) system lacking network accesss

2015-12-23 Thread Glyph Lefkowitz
> On Dec 22, 2015, at 5:51 AM, KM wrote: > > Greetings distutils-sig, > > I have a project with an autogenerated structure - that is, I ran a "helper" > application which creates a directory structure and a setup.py for me. I am > trying to build this package in a virtualenv

Re: [Distutils] Building and installing packages on a (unix) system lacking network accesss

2015-12-23 Thread Ben Finney
KM writes: > This works up until a certain point, where pip (or something launched > by pip) tries to download from the internet. I tried adding > ''--global-option '--no-index -f '" to my options That specifies a *single* option to be passed to Distutils, containing spaces:

[Distutils] Building and installing packages on a (unix) system lacking network accesss

2015-12-23 Thread KM
Greetings distutils-sig, I have a project with an autogenerated structure - that is, I ran a "helper" application which creates a directory structure and a setup.py for me. I am trying to build this package in a virtualenv on an isolated machine, necessiating the step of downloading all the

[Distutils] Reinstall with pip

2015-12-23 Thread Carlos Barera
Hi, I have an automation task that installs a python package from within the project dir using: pip install . What's the right way to reinstall the same package (same version)? --upgrade + --force-reinstall ? Is --no-deps recommended ? How about uninstalling and reinstalling ? Cheers, Carlos