On Tue, 6 Oct 2015 08:57:12 -0400 Donald Stufft <[email protected]> wrote: > > It doesn't really make experimenting in a VCS any harder, since all you need > to > do first is run ``pip install -e .`` and it will do a development install and > add the src/ directory to sys.path.
That means you're suddently polluting your Python install with a development package. So either you create a dedicated virtualenv (more command-line boilerplate, including each time you switch from a project another) or you risk messing with other package installs. Regards Antoine. _______________________________________________ Distutils-SIG maillist - [email protected] https://mail.python.org/mailman/listinfo/distutils-sig
