Re: Distributing applications that use 3rd party modules

2008-06-08 Thread eliben
On May 17, 11:42 am, eliben <[EMAIL PROTECTED]> wrote: > Hello, > > I'm getting into Python now after years of Perl, and as part of my > research I must understand how to do some common tasks I need. > > I have a bunch of Windows PCs at work to which I want to distribute an > application I've devel

Re: Distributing applications that use 3rd party modules

2008-05-20 Thread castironpi
On May 20, 7:56 am, Mike Driscoll <[EMAIL PROTECTED]> wrote: > On May 17, 4:42 am, eliben <[EMAIL PROTECTED]> wrote: > > > > > > > Hello, > > > I'm getting into Python now after years of Perl, and as part of my > > research I must understand how to do some common tasks I need. > > > I have a bunch

Re: Distributing applications that use 3rd party modules

2008-05-20 Thread Mike Driscoll
On May 17, 4:42 am, eliben <[EMAIL PROTECTED]> wrote: > Hello, > > I'm getting into Python now after years of Perl, and as part of my > research I must understand how to do some common tasks I need. > > I have a bunch of Windows PCs at work to which I want to distribute an > application I've develo

Re: Distributing applications that use 3rd party modules

2008-05-18 Thread Mike Driscoll
On May 17, 10:13 am, eliben <[EMAIL PROTECTED]> wrote: > On May 17, 3:23 pm, Mike Driscoll <[EMAIL PROTECTED]> wrote: > > > > > On May 17, 4:42 am, eliben <[EMAIL PROTECTED]> wrote: > > > > Hello, > > > > I'm getting into Python now after years of Perl, and as part of my > > > research I must under

Re: Distributing applications that use 3rd party modules

2008-05-17 Thread eliben
On May 17, 8:54 pm, "Terry Reedy" <[EMAIL PROTECTED]> wrote: > "eliben" <[EMAIL PROTECTED]> wrote in message > > news:[EMAIL PROTECTED] > | Is there a simple way to find out which packages are used by my > | script ? > > Ggrep for import statements? This isn't very comprehensive :-) > (But that

Re: Distributing applications that use 3rd party modules

2008-05-17 Thread Terry Reedy
"eliben" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] | Is there a simple way to find out which packages are used by my | script ? Ggrep for import statements? (But that only only gives direct dependencies.) Does py2exe have an option to output the list it collects?| I think peop

Re: Distributing applications that use 3rd party modules

2008-05-17 Thread eliben
On May 17, 3:23 pm, Mike Driscoll <[EMAIL PROTECTED]> wrote: > On May 17, 4:42 am, eliben <[EMAIL PROTECTED]> wrote: > > > > > Hello, > > > I'm getting into Python now after years of Perl, and as part of my > > research I must understand how to do some common tasks I need. > > > I have a bunch of W

Re: Distributing applications that use 3rd party modules

2008-05-17 Thread John Machin
eliben wrote: Hello, I'm getting into Python now after years of Perl, and as part of my research I must understand how to do some common tasks I need. I have a bunch of Windows PCs at work to which I want to distribute an application I've developed on my PC. All these PCs have Python 2.5 instal

Re: Distributing applications that use 3rd party modules

2008-05-17 Thread Mike Driscoll
On May 17, 4:42 am, eliben <[EMAIL PROTECTED]> wrote: > Hello, > > I'm getting into Python now after years of Perl, and as part of my > research I must understand how to do some common tasks I need. > > I have a bunch of Windows PCs at work to which I want to distribute an > application I've develo

Distributing applications that use 3rd party modules

2008-05-17 Thread eliben
Hello, I'm getting into Python now after years of Perl, and as part of my research I must understand how to do some common tasks I need. I have a bunch of Windows PCs at work to which I want to distribute an application I've developed on my PC. All these PCs have Python 2.5 installed. If my appl