PMXBOT Log file Viewer

Help | Karma | Search:

#pypa logs for Friday the 11th of December, 2015

(Back to #pypa overview) (Back to channel listing) (Animate logs)
[00:35:44] <zahlman> !wa mass of earth / population of earth
[00:35:47] <pmxbot> 838 trillion kg/person (kilograms per person) (2013 estimate)
[00:36:27] <zahlman> well, it works at least that well now
[10:58:36] <kqr> hi. i have no idea whether or not this is the right place to ask, but I'll try! i am working on a small library that is used by another application. i have both locally on my machine. is there a way to pip install the local version of the library in such a way that my application always uses the latest version of it on my hard drive?
[10:59:04] <kqr> previously I have re-installed it every time from each new commit, which is a bit tedious
[11:04:36] <gsnedders> kqr: pip install -e
[11:07:54] <kqr> gsnedders, do I give that the path of the library?
[11:23:33] <mgedmin> yes
[11:24:42] <kqr> cool beans
[11:24:43] <kqr> thanks
[11:31:21] <kqr> do I have to re-run the pip install -e command or does it automatically detect changes?
[11:31:58] <mgedmin> pip install -e is like a symlink: when the source changes, the installed version notices
[11:32:38] <kqr> awesome