Python launcher for Windows can find Python installations and select a particular version of the interpreter to run:
c:/>py -3.4
Is it possible to select some other binary from the installation?
For example nose, behave, nuitka, and many others install a script or binary which can be run directly, if the Script directory in on the path. e.g:
c:/behave
Can py be used to select which behave to call?
I know I can instead select a whole virtualenv, but I was wondering whether py has more uses than selecting the interpreter binary.