I have two python versions: Python 2.5 and Python 2.7. When I\'m setting up django, I want to use Python 2.7, but django is using Python 2.5 somehow.
How can I make sur
Make two simple .cmd files:
python25.cmd:
@echo off set PYTHONHOME=c:\python25 set PATH=%PATH%;c:\python25
python27.cmd:
@echo off set PYTHONHOME=c:\python27 set PATH=%PATH%;c:\python27
Now you can switch between Python 2.5 and 2.7. :)