Re: pretty windows installer for py scripts

2005-09-12 Thread Fredrik Lundh
Gregory Piñero wrote: > How do you do this with the disutils module? I'm looking > to make an installer that will install a python library. start here: http://docs.python.org/dist/dist.html if you need more help, grab some libraries from PyPI and look at their setup files. -- http:/

Re: pretty windows installer for py scripts

2005-09-12 Thread Gregory Piñero
How do you do this with the disutils module?  I'm looking to make an installer that will install a python library. Isn't that already available in the distutils module ?-- http://mail.python.org/mailman/listinfo/python-list-- Gregory PiñeroChief Innovation OfficerBlended Technologies( www.blendedte

Re: pretty windows installer for py scripts

2005-09-12 Thread Steve Christensen
On 2005-09-08, Adriaan Renting <[EMAIL PROTECTED]> wrote: > The elegant way to do installs on Windows would be by creating an MSI. > Microsoft provides (IIRC) a simple tool to create those (Orca), that's > free. Without the Installshield or Wise tools I think it would take > quite some effort thoug

Re: pretty windows installer for py scripts

2005-09-08 Thread [EMAIL PROTECTED]
I second that. NSIS works better than MSI, Inno, or even InstallShield. I highly recommend it. Of course, a second choice is Inno, third is MSI, and last resort is InstallShield. Another option is to make an installer using "AutoIT" but that can get kind of tricky. -- http://mail.python.org/mailm

Re: pretty windows installer for py scripts

2005-09-08 Thread Adriaan Renting
The elegant way to do installs on Windows would be by creating an MSI. Microsoft provides (IIRC) a simple tool to create those (Orca), that's free. Without the Installshield or Wise tools I think it would take quite some effort though, because you need to understand all the details of how msi ta

Re: pretty windows installer for py scripts

2005-09-08 Thread Christophe
Paul Rubin a écrit : > Christophe <[EMAIL PROTECTED]> writes: > >>>Any recommendations on a windows packager/installer that's free? I need >>>it to allow non-tech users to install some python scripts... you know, >>>"Click Next"... "Click Next"... "Click Finish"... "You're Done!" and >>>everything

Re: pretty windows installer for py scripts

2005-09-08 Thread Paul Rubin
Christophe <[EMAIL PROTECTED]> writes: > > Any recommendations on a windows packager/installer that's free? I need > > it to allow non-tech users to install some python scripts... you know, > > "Click Next"... "Click Next"... "Click Finish"... "You're Done!" and > > everything just magically works

Re: pretty windows installer for py scripts

2005-09-08 Thread Christophe
rbt a écrit : > Any recommendations on a windows packager/installer that's free? I need > it to allow non-tech users to install some python scripts... you know, > "Click Next"... "Click Next"... "Click Finish"... "You're Done!" and > everything just magically works ;) Isn't that already available

Re: pretty windows installer for py scripts

2005-09-08 Thread Roel Schroeven
rbt wrote: > Any recommendations on a windows packager/installer that's free? I need > it to allow non-tech users to install some python scripts... you know, > "Click Next"... "Click Next"... "Click Finish"... "You're Done!" and > everything just magically works ;) Innosetup (http://www.jrsoftwar

RE: pretty windows installer for py scripts

2005-09-08 Thread Coates, Steve (ACHE)
> Any recommendations on a windows packager/installer that's > free? I need it to allow non-tech users to install some > python scripts... you know, "Click Next"... "Click Next"... > "Click Finish"... "You're Done!" and everything just > magically works ;) > > Last time I had to do this, I used