On 21/12/2012 12:19, Drößler Tobias wrote:
> Hi,
>
> i plan a simple configuration tool with tkinter (etc.) GUI in python to
> config. an embedded device over COM port.
>
> It’s important to run this in under Win and independent from a python
> environment.
>
> A)Is it possible to get an exe from this py-GUI program? Are there
> critically issues when doing this / not recommended ?
>
> B)Which requirements are needed to run the exe under Win?
> (files/library/GUI-stuff)
I use wxPython instead of tkinter (as tkinter was too basic and not that
native looking when I started all this years ago) for the gui and
generate an exe with py2exe and then create an installer with InnoSetup
- see the wxPython wiki for more details.
The installer takes care to install everything, my wxPython based stuff,
the database engine, the wxPython libs and the MS C run time dll's which
are needed by these tools. I install the MS C run time in my
application folder you could also use the MS installer and have it
installed into the MS side by side folder structure.
>
> best regards and a nice Christmas!
Same to you
Werner
|