Creating an .exe with Tkinter involved



I know this is possible so someone out there should be able to help me! Okay, I have a program that uses Tkinter, and BeautifulSoup. I don't think it should be a problem. I want to create an exe of it. I have py2exe but I don't really know how to work it. I read their tutorial thing and did a setup that looked something like this:

from distutils.core import setup
import py2exe

setup(console['myFunProgram.py'])

(isn't really called myFunProgram)

This seems terribly wrong however because... it isn't a console app. So I am wondering if anyone can show me how or point me in the right direction to a place where I can learn how to do this. I would appreciate it!
.



Relevant Pages

  • Re: Creating an .exe with Tkinter involved
    ... Okay, I have a program that uses Tkinter, and BeautifulSoup. ... I have py2exe but I don't really know how to work it. ... I read their tutorial thing and did a setup that looked something like this: ...
    (comp.lang.python)
  • Re: building exe from script
    ... from distutils.core import setup ... REM make sure that python is in your system path ... python setup.py py2exe ... Is there any solution for building exe file from python script ...
    (comp.lang.python)
  • Re: Little tool - but very big size... :-(
    ... # The lib directory contains everything except the executables and the python dll. ... Sorry, I have not used py2exe for some time, you would be better to ask this question on the py2exe list: ... Otherwise something like Inno Setup ...
    (comp.lang.python)
  • RE: py2exe error
    ... Change the setup script to: ... This will force py2exe to include the encodings package which should solve ... I've written a script that uses pickle to store data to a file. ...
    (comp.lang.python)
  • RE: Py2exe and WMI module
    ... >Python program using Tim Goldens WMI-module. ... The py2exe produce the ... You then need a setup script such as this one: ... snipped from Python proxy module ...> ...
    (comp.lang.python)