I know how what to write in a python script to tell a unix box which version of python to run (#!/usr/bin/env python3.2), but how do I do that in windows. I will be deploying a program through distutils to windows boxes that have both python2.7 and 3.2 installed. I need to force it to use 2.7
Thanks!