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

Re: Distributing applications

2005-03-02 Thread Stephen Thorne
On Wed, 2 Mar 2005 13:07:25 -0600, Jaime Wyant <[EMAIL PROTECTED]> wrote: > However, if you have an idea on updating py2exe bundled apps, I'm all ears... I'm working on a little project that requires remote updating. What I basically came up with is two nested applications. program/program.exe r

Re: Distributing applications

2005-03-02 Thread Robert Kern
Jaime Wyant wrote: Sneaky! I like it. Now if there was only a subversion python module... Google, and you shall find. -- Robert Kern [EMAIL PROTECTED] "In the fields of hell where the grass grows high Are the graves of dreams allowed to die." -- Richard Harter -- http://mail.python.org/mailman

Re: Distributing applications

2005-03-02 Thread Tim Jarman
Jaime Wyant wrote: > Sneaky! I like it. Now if there was only a subversion python module... > > jw > GIYF: http://pysvn.tigris.org/ -- Website: www DOT jarmania FULLSTOP com -- http://mail.python.org/mailman/listinfo/python-list

Re: Distributing applications

2005-03-02 Thread Jaime Wyant
Sneaky! I like it. Now if there was only a subversion python module... jw On Wed, 02 Mar 2005 22:08:45 +0100, Thomas Heller <[EMAIL PROTECTED]> wrote: > "Serge Orlov" <[EMAIL PROTECTED]> writes: > > > Jaime Wyant wrote: > > > >> This becomes especially hairy when someone is updating from 1.0 t

Re: Distributing applications

2005-03-02 Thread Thomas Heller
"Serge Orlov" <[EMAIL PROTECTED]> writes: > Jaime Wyant wrote: > >> This becomes especially hairy when someone is updating from 1.0 to >> say 1.5. Then I have to keep track of all the deltas between >> 1.0/1.5. My way is much simpler because I don't have to keep up with >> *anything*. As long as

Re: Distributing applications

2005-03-02 Thread Serge Orlov
Jaime Wyant wrote: > This becomes especially hairy when someone is updating from 1.0 to > say 1.5. Then I have to keep track of all the deltas between > 1.0/1.5. My way is much simpler because I don't have to keep up with > *anything*. As long as I test my code against my custom built > distribut

Re: Distributing applications

2005-03-02 Thread Serge Orlov
Phillip Mills wrote: > First, thanks to all the people who have answered so far for the > suggestions. > > In article <[EMAIL PROTECTED]>, > André Søreng <[EMAIL PROTECTED]> wrote: > > > Phillip Mills wrote: > > > > My problems are: > > [...] > > > http://starship.python.net/crew/theller/py2exe/ >

Re: Distributing applications

2005-03-02 Thread Mitch Amiano
I'm fairly new to python myself (with about 16 years of various languages); I found py2exe fairly straightforward to use. The instructions are ok, but if you care to see it I took some notes and threw them into an article on my company site.

Re: Distributing applications

2005-03-02 Thread Jaime Wyant
On 2 Mar 2005 10:43:38 -0800, Serge Orlov <[EMAIL PROTECTED]> wrote: > Jaime Wyant wrote: > > I chose not to use py2exe because it made updating my app a bit > > messier. For instance, suppose I don't use the smtplib module in > > version 1 of my software. Py2exe realizes that and doesn't 'packag

Re: Distributing applications

2005-03-02 Thread Phillip Mills
First, thanks to all the people who have answered so far for the suggestions. In article <[EMAIL PROTECTED]>, André Søreng <[EMAIL PROTECTED]> wrote: > Phillip Mills wrote: > > My problems are: [...] > http://starship.python.net/crew/theller/py2exe/ Apparently I had more problems than I men

Re: Distributing applications

2005-03-02 Thread Serge Orlov
Jaime Wyant wrote: > I chose not to use py2exe because it made updating my app a bit > messier. For instance, suppose I don't use the smtplib module in > version 1 of my software. Py2exe realizes that and doesn't 'package' > smtplib with my executable. Now, if I release version 1.1 which does >

Re: Distributing applications

2005-03-02 Thread André Søreng
Phillip Mills wrote: I've learned enough of the Python language to be mildly dangerous and have used it in a few personal projects. All my development of commercial (or production) products over the past dozen years have been done with C++ or Java. For a program I'm planning -- to begin during

Re: Distributing applications

2005-03-02 Thread Jaime Wyant
I wanted a nice tightly-wrapped distribution of my own and really didn't want to go the py2exe route. I may have used a sledgehammer to kill a fly, but here is what I did... 1) Downloaded python source (2.3.4) 2) Modified source, so that sys.path would pull from a registry key setup by my install

Re: Distributing applications

2005-03-02 Thread Toby Dickenson
On Wednesday 02 March 2005 14:12, Phillip Mills wrote: > now any comments or references on the mechanics of creating > a self-contained distribution? Run to http://starship.python.net/crew/theller/py2exe/ -- Toby Dickenson -- http://mail.python.org/mailman/listinfo/python-list