I'd like to use multiple versions of python (2.5 and 2.7 is what I need, but would be nice to have 3.2 also). On Windows XP!

I'd like to use virtualenvwrapper-win instead of virtualenv -p

Here's the method for Unix: Use different Python version with virtualenv

Does the same method apply for virtualenvwrapper-win? The source for mkvirtualenv seems to pass the arguments to virtualenv on line 35: https://github.com/davidmarble/virtualenvwrapper-win/blob/master/scripts/mkvirtualenv.bat

I thought I would ask if anyone has done this (and to tell others that they can do this) by asking this question before trying it (and potentially messing up my python environment).

If you have done this, any things to watch out for? Can I use the ActiveState python install for my second python version?

link|improve this question

67% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Virtualenvwrapper passes command line flags directly to virtualenv. mkvirtualenv --python=c:/your/path/to/python2.5 will set up your virtual environment with python 2.5. I've done it many times.

That said, it will save you trouble later if you install as few packages outside of your virtual environment as possible. (you can always delete a virtual environment without too much trouble, it's harder to completely remove packages/change paths outside of one) Multiple versions of python can make pip and easy_install do strange things. Inside a virtual environment, you don't have to worry about that.

You don't need to worry about messing up your python environment, at least not with virtualenv, it's easy to add or remove virtual environments. The --python flag will work with any python executable (it just sets up a different set of scripts within the virtual environment), so it should work with ActiveState.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.