[10:50:06] <mr_charlatan2> using pip or easy_install behind a proxy .. im getting wget to work with http_proxy variable export https_proxy= wget https://pypi.python.org/simple/
[10:50:18] <mr_charlatan2> Download error on https://pypi.python.org/simple/: [Errno 1] _ssl.c:492: error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol -- Some packages may not be found!
[10:50:27] <mr_charlatan2> thats what i get with easy_install ..
[10:50:41] <mr_charlatan2> now using pip also fails with --proxy ..
[10:51:30] <mr_charlatan2> so my proxy works .. however when using easy_install i can see NONE/400 3668 NONE error:invalid-request - NONE/- text/html
[10:52:13] <mr_charlatan2> so i reccon it tries to use ssl against the proxy .. however the proxy itself only works with http _to_ it .. on the inside ..
[10:52:47] <mr_charlatan2> so how can i solve that ???
[13:08:39] <avi___> hi guys, I have installed some packages with pip --user install... now I want list those... pip freeze gives list of all the packages... i thought I could try pip freeze --user, but thats not really possible. So how do I go about it?
[13:11:03] <avi___> so basically I want all the --user installs and not system installs
[13:51:17] <straycat> Hi, I'm new to setuptools, when I run python setup.py --requires I'd expect to see the contents of install_requires but instead it just outputs a single newline. I can't find anything useful in the documentation either. :/
[13:57:03] <avi___> starting the issue with, 'Proposal' should do I guess?
[13:57:55] <mgedmin> straycat, requires is an old misfeature of distutils/setuptools that is different from install_requires
[13:58:02] <avi___> Proposal: Add --user option to freeze, so that it lists all the pip --user install
[13:58:29] <straycat> mgedmin, Oh I see, okay thanks :)
[15:21:50] <avi__> anyways your code is clean... and I don't think I would submitted such nice PR
[15:22:03] <avi__> cos I still don't know much of PIP internals
[15:22:13] <pf_moore> mgedmin might be just that, but Windows uses a different env var (one of the APPDATA ones) and I want to get the incantation right :-)
[16:04:06] <jwhite007> i know that i can install a local package with "pip install -e /path/to/local/package". what syntax should i use to do the same thing from a requirements file?