Re: Source code of Windows installer for Python interactive interpreter

2012-12-28 Thread Dave Angel
On 12/28/2012 10:30 AM, philip.a.mol...@gmail.com wrote: > I am writing a command-line application for Windows. I would like to review > the Python source code to find out how to install my application so that it > doesn't have to be called using the path and file name (i.e. being able to > type

Re: Source code of Windows installer for Python interactive interpreter

2012-12-28 Thread Andrew Berg
On 2012.12.28 09:30, philip.a.mol...@gmail.com wrote: > Is the Python directory (i.e. "C:\Python33") assigned to the PATH variable > using the Batch PATH built-in command? If so, where? As of Python 3.3, there is a py.exe in the system32 directory that launches the appropriate version of Python fo

Source code of Windows installer for Python interactive interpreter

2012-12-28 Thread philip . a . molloy
I am writing a command-line application for Windows. I would like to review the Python source code to find out how to install my application so that it doesn't have to be called using the path and file name (i.e. being able to type `python` into the Command prompt, instead of `C:\path\to\execut