[09:38:52] <mgedmin> you can create a virtualenv without pip if you really want to
[09:39:16] <mgedmin> (I'm not sure why anyone would ever want to ... well maybe if you want to test pip bootstrapping in a clean python that doesn't have pip)
[09:43:05] <jrabbit> mgedmin: I mean its own version or if it copies the system's pip
[09:43:20] <jrabbit> mgedmin: I'm running into a nasty bug https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=751827
[09:43:31] <jrabbit> and it doesn't seem like their fix works here
[09:43:42] <mgedmin> I think debian's virtualenv behaves differently from upstream virtualenv
[09:43:53] <mgedmin> I believe upstream virtualenv bundles its own copy of setuptools and pip and installs those
[15:37:19] <straycat> What's the best way to bootstrap setuptools on a machine with no internet connection? From what I can see the 0.6 version of setuptools bootstraps itself, whilst this doesn't seem to work fully on 7.0, I may be mistaken though.
[15:55:01] <qwcode> straycat, you can install pip/setuptools using local copies of "get-pip.py", pip and setuptools see here https://pip.pypa.io/en/latest/installing.html#install-pip specifically the bit about "Install from local copies of pip and setuptools"
[16:13:20] <straycat> It seems a little odd to me that the 0.6 version can install itself, what stops 7.0 from doing this?
[17:25:07] <straycat> Actually I now think this is a recent setuptools bug, checked out from the 7.0 tag I can build and install just fine using distutils. Checked out from master I encounter issues.