I have a Debian system currently running with python 2.5.4. I got virtualenv properly installed, everything is working fine. Is there a possibility that I can use a virtualenv with a different version of Python?

I compiled Python 2.6.2 and would like to use it with some virtualenv. Is it enough to overwrite the binary file? Or do I have to change something in respect to the libraries?

link|improve this question

3  
Just mentioning that you can do this using virtualenvwrapper too. – bias May 28 '10 at 3:25
feedback

3 Answers

up vote 83 down vote accepted

Just use the -p flag when creating your virtualenv instance to specify the Python executable you want to use, eg:

virtualenv -p /usr/bin/python2.6
link|improve this answer
does this have to be only the binary? – Ulf Oct 7 '09 at 21:55
12  
I figured I'd mention that this works for virtualenvwrappers too: mkvirtualenv -p python2.6 env – bias May 28 '10 at 3:24
7  
Can you change the Python version at a later point? – Sam Apr 21 '11 at 11:39
3  
I'm missing something here - doesn't this require that 2.6 already be installed on the system? I thought the point of virtualenv was that I could have a version of python other than the main one (in my case, 2.4 on CentOS). I was assuming I could install virtualenv, then install Python 2.6 under it for packages in the env to make use of? – John C May 24 '11 at 14:31
4  
@John yes, you are. That isn't the point of virtualenv: the point of that is to create a sandboxed environment for Python. You will need to install that version first - you can install it locally for your user, though. – Daniel Roseman May 24 '11 at 14:47
show 1 more comment
feedback

virtualenv --python=/usr/bin/python2.6 myvirtualenv

link|improve this answer
This works well for my under Ubuntu 9.10 (though the platform probably doesn't matter). Looks like you added an extra whitespace in the command between python and 2.6 that should not be there, however. virtualenv --python=/usr/bin/python2.6 myvirtualenv – RjOllos Feb 22 '10 at 2:49
Thanks, fixed it. – iElectric Feb 23 '10 at 21:02
Thank you so much for this! – Spike Jun 10 '10 at 15:47
feedback

Under Windows for me this works:

virtualenv --python=c:\Python25\python.exe envname

without the python.exe I got WindowsError: [Error 5] Access is denied I have Python2.7.1 installed with virtualenv 1.6.1, and I wanted python 2.5.2.

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.