Re: Creating Installer or Executable in Python

2007-11-15 Thread Nick Craig-Wood
Shane Geiger <[EMAIL PROTECTED]> wrote: > DanielJohnson wrote: > > I have a small project which has around 10 .py files and I run this > > project using command line arguments. I have to distribute this > > project to somebody. > > > > I was wondering how can I make an executable or some kind of >

Re: Creating Installer or Executable in Python

2007-11-14 Thread Shawn O'Shea
--Original Message- >> From: [EMAIL PROTECTED] >> [mailto:[EMAIL PROTECTED] On > Behalf >> Of sturlamolden >> Sent: Wednesday, November 14, 2007 9:54 AM >> To: python-list@python.org >> Subject: Re: Creating Installer or Executable in Python >> >

Re: Creating Installer or Executable in Python

2007-11-14 Thread kyosohma
On Nov 14, 9:17 am, DanielJohnson <[EMAIL PROTECTED]> wrote: > Thanks for telling about py2exe. > > Is there any utility that will help to make it as a .deb or .rpm file > (for Linux)? You'll probably want to take a look at PyInstaller. It can be found here: http://pyinstaller.python-hosting.com/

RE: Creating Installer or Executable in Python

2007-11-14 Thread Adam Pletcher
f any free tools for building MSIs, but I'd love to find one. - Adam > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of sturlamolden > Sent: Wednesday, November 14, 2007 9:54 AM > To: python-list@python.org > Subject: Re: Crea

Re: Creating Installer or Executable in Python

2007-11-14 Thread sturlamolden
On 14 Nov, 16:17, DanielJohnson <[EMAIL PROTECTED]> wrote: > Thanks for telling about py2exe. Also note that you should build an MSI installer e.g. using InnoSetup after applying py2exe. You could skip the py2exe part and only use InnoSetup to create an MSI. Most likely your client will not care

Re: Creating Installer or Executable in Python

2007-11-14 Thread DanielJohnson
Thanks for telling about py2exe. Is there any utility that will help to make it as a .deb or .rpm file (for Linux)? -- http://mail.python.org/mailman/listinfo/python-list

Re: Creating Installer or Executable in Python

2007-11-14 Thread kyosohma
On Nov 14, 8:34 am, Laszlo Nagy <[EMAIL PROTECTED]> wrote: > DanielJohnson wrote: > > I have a small project which has around 10 .py files and I run this > > project using command line arguments. I have to distribute this > > project to somebody. > > > I was wondering how can I make an executable o

Re: Creating Installer or Executable in Python

2007-11-14 Thread J. Clifford Dyer
On Wed, Nov 14, 2007 at 03:34:14PM +0100, Laszlo Nagy wrote regarding Re: Creating Installer or Executable in Python: > > DanielJohnson wrote: > > I have a small project which has around 10 .py files and I run this > > project using command line arguments. I have to distribut

Re: Creating Installer or Executable in Python

2007-11-14 Thread Shane Geiger
A few candidate solutions: http://nsis.sourceforge.net/Main_Page http://www.jrsoftware.org/isinfo.php DanielJohnson wrote: > I have a small project which has around 10 .py files and I run this > project using command line arguments. I have to distribute this > project to somebody. > > I was won

Re: Creating Installer or Executable in Python

2007-11-14 Thread Laszlo Nagy
DanielJohnson wrote: > I have a small project which has around 10 .py files and I run this > project using command line arguments. I have to distribute this > project to somebody. > > I was wondering how can I make an executable or some kind of > installer, so that end user doesn't need to compile