[07:53:38] <ronny> pjdelport: thats a known heisenbug, its very hard to diagnose as far as i remember, i roughly recall they opted for solving it by switch to warehouse in a while
[08:05:06] <pjdelport> Would it help if I give the error detail ids / keys?
[09:36:42] <dpn`> hey I can't get dependency links for github working in my setup.py file.. we've forked a pub repo and added our url to dependency_links but it's not working
[10:50:25] <ktosiek> it's been deprecated for ages
[10:50:39] <ktosiek> https://github.com/pypa/pip/blob/8e3eaec559b46119ae80472d9a6ea837e75d6de9/pip/cmdoptions.py#L330 (note the "Remove after 1.5" note)
[15:54:11] <XioNoX> any idea why when I run "sudo pip install xxx" it properly tells me "package already installed ( in /home/user/.local ...)" while "pip install xxx" always reinstall the package at the same location?
[17:58:33] <nanonyme> Not having --ignore-installed involves trying to uninstall that system package which you don't have permissions to uninstall so it fails
[17:58:58] <nanonyme> --user without --ignore-installed is totally useless
[17:58:58] <XioNoX> but what when I don't have system packages?
[17:59:09] <nanonyme> Then it has no effect anyway
[18:00:25] <nanonyme> The only place where it matters at all is when it prevents your installation from failing. So why care?
[18:00:32] <XioNoX> hum, so I mainly use pip packages with ansible modules, what would be the best way to use them then?