[17:34:02] <thedodd> i've got a devpi index which I am adding to my pip.conf as ``index-url = http://build.sjc.objectrocket.com:7070/myindex/prod/+simple/``
[17:34:28] <thedodd> but pip seems to try to translate this to http://build.sjc.objectrocket.com:7070/root/pypi/+simple/ no matter what I do
[17:34:38] <thedodd> any ideas as to what the problem may be??
[17:41:59] <thedodd> disregard. The problem seemed to be that I was using /etc/pip.conf and it was not being recognized properly. Had to change to ~/.pip/pip.conf.
[19:42:21] <xavi____> hello, I work for a company called Baydin and we'd like to make a small donation for pypa as a thank you for making PIP so great. Where's the best place to do that?
[19:47:06] <dstufft> oh uh. Well first off thanks :D Tbh I'm not sure how to handle that heh. We're not really set up for donations (and personally I'd feel bad accepting one since I get paid to work on pip!). You might try pinging the pypa-dev mailing list to see if any of the other devs know of a good way to handle that
[19:54:13] <xavi____> Actually that does make a lot of sense. If that's the best route, we'll increase our contribution to the PSF.
[20:09:44] <dstufft> xavi____: the PSF totally works too!
[22:36:30] <foist> I've installed a package through `sudo pip install -U fig`, and it shows up when I do `pip freeze | grep fig`, but the `fig` command is not available as I expect it to be. Why?
[22:37:23] <dstufft> foist: did it install to /usr/local/bin and is that maybe not in your path?
[22:38:04] <foist> dstufft: how do I check where it installed to?
[22:39:03] <dstufft> foist: pip show fig -f should list all of the files, though it's relative to the site-packages directory
[23:38:53] <hex``> I'm having trouble with multiple projects in same host server. If I install Django 1.7.1, pip uninstall older versions automatically, breaking my old projects. How can I install requirements without uninstalling older versions?
[23:40:05] <hex``> since it is a very restrict host, isn't there a command line to do such thing?
[23:40:12] <hex``> install without uninstalling older versions...
[23:42:18] <dstufft> you can't have two copies of the same thing installed into the same python
[23:42:24] <dstufft> they'll just overwrite each other
[23:43:33] <hex``> Well. Just weird, I always used different versions in webfaction and all of a sudden it's having version conflicts... I'll use virtualenv then...ty dstufft