Hi,
I am looking for feedback from people that has used or still uses
Py2Exe. I love to program in python, and I would like to use it to
write support tools for our development team, but I cannot require
everyone to install python in their machines, so I was thinking that
Py2Exe would help on that.
The support tools I write are mostly command line driven (no GUI), but
in the future, I would like to write some expert applications that will
contain GUI. I was thinking on using wxPython for the GUI, so I was
wondering how well behaves Py2Exe with the wxPython module.
Other modules I use besides the standard modules are CTypes and the
Perforce python module p4.py. I try not to use any of the win32 stuff,
but I can see how I will have to for some utilitites, so if anyone has
experience with the win32 modules and Py2Exe, any feedback will be
highly appreciated.
Thanks,
Isaac. 9 3529
Isaac Rodriguez wrote:
Hi,
I am looking for feedback from people that has used or still uses
Py2Exe. I love to program in python, and I would like to use it to
write support tools for our development team, but I cannot require
everyone to install python in their machines, so I was thinking that
Py2Exe would help on that.
The support tools I write are mostly command line driven (no GUI), but
in the future, I would like to write some expert applications that will
contain GUI. I was thinking on using wxPython for the GUI, so I was
wondering how well behaves Py2Exe with the wxPython module.
I did a project with wxPython and py2exe. Just great :-) I also used
Inno Setup ( http://www.jrsoftware.org/isinfo.php) to create an
installer. You should be able to learn/use both in one day.
Other modules I use besides the standard modules are CTypes and the
Perforce python module p4.py. I try not to use any of the win32 stuff,
but I can see how I will have to for some utilitites, so if anyone has
experience with the win32 modules and Py2Exe, any feedback will be
highly appreciated.
Thanks,
Isaac.
Hi Isaac,
Isaac Rodriguez wrote:
Hi,
I am looking for feedback from people that has used or still uses
Py2Exe. I love to program in python, and I would like to use it to
write support tools for our development team, but I cannot require
everyone to install python in their machines, so I was thinking that
Py2Exe would help on that.
The support tools I write are mostly command line driven (no GUI), but
in the future, I would like to write some expert applications that will
contain GUI. I was thinking on using wxPython for the GUI, so I was
wondering how well behaves Py2Exe with the wxPython module.
My experiences with Py2Exe and wxPython are very good. In fact, the
samples included with Py2Exe include some wxPython samples.
It's also possible to get PyGTK working with Py2exe, but it's a bit
more convoluted. However, the examples on the PyGTK and esp. Py2exe
websites should get you there.
What was more difficult was Amara, but with some tweaking even that
eventually worked.
I have no experience with CTypes, so I can only assume that it will
work... p4.py might be more reason to worry but you'd have to ask
around or try.
PythonWin was painless, no issues at all getting pythonwin/com etc.
stuff to work.
Other modules I use besides the standard modules are CTypes and the
Perforce python module p4.py. I try not to use any of the win32 stuff,
but I can see how I will have to for some utilitites, so if anyone has
experience with the win32 modules and Py2Exe, any feedback will be
highly appreciated.
Thanks,
Isaac.
Isaac Rodriguez wrote:
Hi,
I am looking for feedback from people that has used or still uses
Py2Exe. I love to program in python, and I would like to use it to
write support tools for our development team, but I cannot require
everyone to install python in their machines, so I was thinking that
Py2Exe would help on that.
The support tools I write are mostly command line driven (no GUI), but
in the future, I would like to write some expert applications that will
contain GUI. I was thinking on using wxPython for the GUI, so I was
wondering how well behaves Py2Exe with the wxPython module.
Other modules I use besides the standard modules are CTypes and the
Perforce python module p4.py. I try not to use any of the win32 stuff,
but I can see how I will have to for some utilitites, so if anyone has
experience with the win32 modules and Py2Exe, any feedback will be
highly appreciated.
Thanks,
Isaac.
I've used py2exe extensively over the last couple of years to package up
everything from console apps to Windows services. I've found it to work
extremely well and it produces something that is easily distributable on Windows
platform. In addition to py2exe I also employ Inno Setup
( http://www.jrsoftware.org/isinfo.php) to create a Windows installer for my
applications. Inno can take care of myriad of installation "stuff" that must be
done to make a Windows app easy to distribute for "Windows users". This
combination works VERY well.
It takes a little practice, but it works just fine with wxPython, win32all
extensions, ctypes, etc. If I'm not mistaken, author of ctypes (Thomas Heller)
and py2exe are the same person). I can't speak to Perforce python module as
I've never used it myself. Start with a small console app and them move on to
more complex applications. You may want to take a look at the py2exe newsgroup
(gmane.comp.python.py2exe) for any questions.
-Larry Bates
>
I did a project with wxPython and py2exe. Just great :-) I also used
Inno Setup (http://www.jrsoftware.org/isinfo.php) to create an
installer. You should be able to learn/use both in one day.
Do you have a specific reason for using Inno Setup and not a Windows
Installer based setup? Will Inno Setup play especially well with py3exe
or was it just the learning curve of using a Windows Installer setup?
I am asking this because I have a lot of experience using the Windows
Installer service, and I also have all the productivity tools available
to create an installer for my tools if I needed to, but now I am
curious about this Inno Setup.
Thanks,
Isaac.
Isaac Rodriguez wrote:
>I did a project with wxPython and py2exe. Just great :-) I also used Inno Setup (http://www.jrsoftware.org/isinfo.php) to create an installer. You should be able to learn/use both in one day.
Do you have a specific reason for using Inno Setup and not a Windows
Installer based setup? Will Inno Setup play especially well with py3exe
or was it just the learning curve of using a Windows Installer setup?
I am asking this because I have a lot of experience using the Windows
Installer service, and I also have all the productivity tools available
to create an installer for my tools if I needed to, but now I am
curious about this Inno Setup.
Thanks,
Isaac.
Inno Setup (like Python) is open source so there is no cost.
Normally you have to purchase something to get the Windows Installer.
Since you have the source code (rarely needed because Inno is so
powerful and configurable), you aren't at the mercy of the Windows
Installer (unless they now give it away and I missed something).
I don't think Inno is especially suited for py2exe apps, it just
works very well, is free, and seems to do everything people want in
an installer.
-Larry Bates
Isaac Rodriguez wrote:
>I did a project with wxPython and py2exe. Just great :-) I also used Inno Setup (http://www.jrsoftware.org/isinfo.php) to create an installer. You should be able to learn/use both in one day.
Do you have a specific reason for using Inno Setup and not a Windows
Installer based setup? Will Inno Setup play especially well with py3exe
or was it just the learning curve of using a Windows Installer setup?
I am asking this because I have a lot of experience using the Windows
Installer service, and I also have all the productivity tools available
to create an installer for my tools if I needed to, but now I am
curious about this Inno Setup.
Thanks,
Isaac.
The main reason for using Inno Setup is that it is free. Then I quickly
saw that it is powerful and easy to use. And I don't like Microsoft too
much in general, and that's also one of the reasons why I preferred to
stay away from MSI...
I've never used py3exe though, and I can't find an homepage about it, so
I don't know how it is related to py2exe...
Antoine De Groote <an*****@vo.luwrites:
Isaac Rodriguez wrote:
Do you have a specific reason for using Inno Setup and not a
Windows Installer based setup?
The main reason for using Inno Setup is that it is free. Then I
quickly saw that it is powerful and easy to use. And I don't like
Microsoft too much in general, and that's also one of the reasons
why I preferred to stay away from MSI...
To clarify, Inno Setup is released under a free-software license:
<URL:http://www.jrsoftware.org/files/is/license.txt>
which makes it a better bet than non-free software as infrastructure
to build upon.
--
\ "Nothing in life is so exhilarating as to be shot at without |
`\ result." -- Winston Churchill |
_o__) |
Ben Finney
Isaac Rodriguez wrote:
I am asking this because I have a lot of experience using the Windows
Installer service, and I also have all the productivity tools available
to create an installer for my tools if I needed to
just go ahead and use it.
py2exe generates an EXE and (usually) a bunch of related files: http://www.py2exe.org/index.cgi/FAQ
any tool that can wrap that up and install it on another machine works
just fine.
</F>
We use py2exe on regular basis for most of our app's, both for internal
and external distribution.
We then pack it to an installer using NSIS
( http://nsis.sourceforge.net/Main_Page) which is also free :o) This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: RJS |
last post by:
Hi all,
I can't get a py2exe compiled app to run with numarray (numarray-0.5.win32-
py2.2).
Also wxPythonWIN32-2.3.3.1-Py22 and...
|
by: |
last post by:
I want a binnary file to my aplicattion, but py2exe don't match the xmll.sax module.
the py2exe shows this errors:
warning: py2exe:...
|
by: Stefan Behrens |
last post by:
Hi,
does anybody know how I can get py2exe to work with wxPython's
wxCalendarCtrl?
Currently, I have just a "standard" setup.py, and py2exe...
|
by: Kathleen Kudzma |
last post by:
I'm having a problem with py2exe for Python 2.3. I got fixed the
Lookuperror no codec search functions registered: can't find encoding by...
|
by: Kathleen Kudzma |
last post by:
Does anyone know how to resolve the following problem that I'm getting in
Python 2.2 and 2.3?
PROBLEM: When I try to create a classReader object...
|
by: Steven Bell |
last post by:
I am trying to build an executable from a python script.
Using python 2.3, SOAPpy 0.10.3, Py2exe 0.4.2.
Build command: python setup.py py2exe -w...
|
by: Luc Saffre |
last post by:
Hello,
I had a strange problem when freezing (using either py2exe or McMillan
installer) a script that imports reportlab (which imports PIL...
|
by: Larry Bates |
last post by:
Jimmy Retzlaff wrote:
Everyone,
Thanks for all your hard work on py2exe, it is greatly appreciated.
-Larry Bates
|
by: Jimmy Retzlaff |
last post by:
py2exe 0.6.9 released
=====================
py2exe is a Python distutils extension which converts Python scripts
into executable Windows...
|
by: tammygombez |
last post by:
Hey everyone!
I've been researching gaming laptops lately, and I must say, they can get pretty expensive. However, I've come across some great...
|
by: concettolabs |
last post by:
In today's business world, businesses are increasingly turning to PowerApps to develop custom business applications. PowerApps is a powerful tool...
|
by: teenabhardwaj |
last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
|
by: Naresh1 |
last post by:
What is WebLogic Admin Training?
WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
|
by: jalbright99669 |
last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
|
by: antdb |
last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine
In the overall architecture, a new "hyper-convergence" concept was...
|
by: Matthew3360 |
last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function.
Here is my code.
...
|
by: Matthew3360 |
last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
|
by: AndyPSV |
last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
| |