Open
Description
What I would like is to install multiple copies of the same version of python, with different build options.
My current solution for this is to download the python-build
script and build with
PYTHON_CONFIGURE_OPTS="..." python-build -v 2.7.8 ~/.pyenv/versions/2.7.8-custom1
but what I would rather do is something like
PYTHON_CONFIGURE_OPTS="..." pyenv install 2.7.8 2.7.8-custom1
I think this would most closely match the way virtualenvs are created.