When I do this:
pythonbrew venv create proj
pythonbrew venv list
pythonbrew venv use proj
a new virtual environment is installed to my ~/.pythonbrew/venvs/Python-2.7.3
directory, where it puts all my other virtual environments as well. Is there a way to specify a different target location (or move it to where I want after installing) without breaking things? I want to keep my virtual environments with their associated projects, not all together under the .pythonbrew
directory. I know I can do this easily enough with plain old virtualenv, but I need pythonbrew to use the brewed version of python we want.
I'm not seeing how to do this in the documentation, and copying my virtual environment to my project directory and symlinking from it didn't work as well as I'd hoped. I'm aware of pyenv, and plan to go that route at some point, but am still using pythonbrew for the moment.
Is there a way to do this that I missed?