Re: Adding Python to the path in Windows

2007-06-21 Thread kyle
On Jun 21, 11:53 am, Larry Bates <[EMAIL PROTECTED]> wrote: > Another solution is to use py2exe to convert your python program into an .exe > file that you can distribute. Then they require no Python installation at > all. > I use py2exe and Inno Installer to do just that and it works great. > >

Re: Adding Python to the path in Windows

2007-06-21 Thread kyle
On Jun 21, 11:49 am, [EMAIL PROTECTED] wrote: > I should probably mention that if you have some complicated GUI's, > they will probably load slowly over the network. And I did notice that > scripts using WMI and pyWin32 modules can be slower than they ought to > be. Just something to keep in mind i

Re: Adding Python to the path in Windows

2007-06-21 Thread Larry Bates
[EMAIL PROTECTED] wrote: > On Jun 21, 10:10 am, Duncan Booth <[EMAIL PROTECTED]> > wrote: >> [EMAIL PROTECTED] wrote: >>> I have many users using two different versions of python, 2.4 and >>> 2.5. I am running Python scripts on their computers programmatically, >>> but I can't run it with the full

Re: Adding Python to the path in Windows

2007-06-21 Thread kyosohma
On Jun 21, 10:45 am, [EMAIL PROTECTED] wrote: > On Jun 21, 10:30 am, [EMAIL PROTECTED] wrote: > > > > > On Jun 21, 11:22 am, [EMAIL PROTECTED] wrote: > > > > If your users aren't programmers, then why not just run Python over > > > the network? That's what we do at my place of employment. The only

Re: Adding Python to the path in Windows

2007-06-21 Thread kyosohma
On Jun 21, 10:30 am, [EMAIL PROTECTED] wrote: > On Jun 21, 11:22 am, [EMAIL PROTECTED] wrote: > > > > > If your users aren't programmers, then why not just run Python over > > the network? That's what we do at my place of employment. The only > > machines that have Python actually installed are dev

Re: Adding Python to the path in Windows

2007-06-21 Thread kyle
On Jun 21, 11:22 am, [EMAIL PROTECTED] wrote: > > If your users aren't programmers, then why not just run Python over > the network? That's what we do at my place of employment. The only > machines that have Python actually installed are development machines. > > Mike Mike, I place the scripts on

Re: Adding Python to the path in Windows

2007-06-21 Thread kyle
On Jun 21, 11:10 am, Duncan Booth <[EMAIL PROTECTED]> wrote: > Assuming they have Python installed normally there will be file > associations set up for .py and .pyw, so all you need to do to type in > the script name: Python itself does not need to be in the path. > N.B. You do need to include the

Re: Adding Python to the path in Windows

2007-06-21 Thread kyosohma
On Jun 21, 10:10 am, Duncan Booth <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote: > > I have many users using two different versions of python, 2.4 and > > 2.5. I am running Python scripts on their computers programmatically, > > but I can't run it with the full path because they have differ

Re: Adding Python to the path in Windows

2007-06-21 Thread Duncan Booth
[EMAIL PROTECTED] wrote: > I have many users using two different versions of python, 2.4 and > 2.5. I am running Python scripts on their computers programmatically, > but I can't run it with the full path because they have different > versions installed. I need to run it like 'python {script nam

Adding Python to the path in Windows

2007-06-21 Thread kyle
I have many users using two different versions of python, 2.4 and 2.5. I am running Python scripts on their computers programmatically, but I can't run it with the full path because they have different versions installed. I need to run it like 'python {script name}'. So I need to add Python to t