Creating an executable installer on Windows

2006-08-25 Thread Bernard Lebel
Hello,

I'd like to know how one can create a Windows installer executable. I
have this bunch modules, html files, pictures and directories that I'd
like to install in various places on a disk drive. When the executable
is run, it's like pretty much any standard installation: user answers
a few questions, click OK, and then everything is there.


Thanks
Bernard
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Creating an executable installer on Windows

2006-08-25 Thread Larry Bates
Bernard Lebel wrote:
 Hello,
 
 I'd like to know how one can create a Windows installer executable. I
 have this bunch modules, html files, pictures and directories that I'd
 like to install in various places on a disk drive. When the executable
 is run, it's like pretty much any standard installation: user answers
 a few questions, click OK, and then everything is there.
 
 
 Thanks
 Bernard

I use combination of py2exe (http://www.py2exe.org) to create
distributable python application and Inno Setup
(http://www.jrsoftware.org/isinfo.php) to create the actual
Windows installer (e.g. setup.exe).  This does what you want
and was very easy to set up.

-Larry Bates
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: creating an executable?

2006-03-10 Thread Larry Bates
John Salerno wrote:
 Well, now that I can time my laundry, I need to make it runnable. I
 tried looking for info on the freeze module in the help file, but it
 didn't seem to come up with much. According to the Python wiki, freeze
 is for making executables for Unix.
 
 Can I make an executable with just the standard distribution, or do I
 need a separate module?
 
 Thanks.

You didn't ask about an installer, but I thought I'd make the suggestion
anyway.  The combination of py2exe and Inno Installer works EXTREMELY
well for distributing software on Windows platform.  Use py2exe to
create .exe and support files, use Inno to wrap it up into a neat single
setup.exe file for distribution.

-Larry Bates
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: creating an executable?

2006-03-10 Thread John Salerno
Larry Bates wrote:
 John Salerno wrote:
 Well, now that I can time my laundry, I need to make it runnable. I
 tried looking for info on the freeze module in the help file, but it
 didn't seem to come up with much. According to the Python wiki, freeze
 is for making executables for Unix.

 Can I make an executable with just the standard distribution, or do I
 need a separate module?

 Thanks.
 
 You didn't ask about an installer, but I thought I'd make the suggestion
 anyway.  The combination of py2exe and Inno Installer works EXTREMELY
 well for distributing software on Windows platform.  Use py2exe to
 create .exe and support files, use Inno to wrap it up into a neat single
 setup.exe file for distribution.
 
 -Larry Bates

Thanks. That's definitely something I would ask about eventually, so 
I'll check that one out too!
-- 
http://mail.python.org/mailman/listinfo/python-list


creating an executable?

2006-03-09 Thread John Salerno
Well, now that I can time my laundry, I need to make it runnable. I 
tried looking for info on the freeze module in the help file, but it 
didn't seem to come up with much. According to the Python wiki, freeze 
is for making executables for Unix.

Can I make an executable with just the standard distribution, or do I 
need a separate module?

Thanks.
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: creating an executable?

2006-03-09 Thread [EMAIL PROTECTED]
Can I make an executable with just the standard distribution, or do I
need a separate module?

Check out py2exe: http://www.py2exe.org/

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: creating an executable?

2006-03-09 Thread John Salerno
[EMAIL PROTECTED] wrote:
 Can I make an executable with just the standard distribution, or do I
 need a separate module?
 
 Check out py2exe: http://www.py2exe.org/
 
Thanks. Been meaning to look into that one anyway, now I get a chance.  :)
-- 
http://mail.python.org/mailman/listinfo/python-list