For those of you who install your virtual environments into a global directory (e.g. virtualenvwrapper users, `$WORKON_HOME`), what's the primary reason you do that instead locally into your workspace (e.g. `.venv` directory next to your code)?
@brettcannon two reasons: nice to see all the venvs that are around, and I donโt want the venv in the project folder (I have cdvirtualenv and cdsitepackages for the times I do actually want to rummage)
@carlton What would you think if there was a symlink from `.venv` back to the virtual environment? How about a file that listed the directory of the virtual environment?
@brettcannon Iโd probably find a symlink noisy, but Iโd have no problem at all with a file (a dot file) saying where the venv was. (That would help tools with discovery Iโd imagine)