Ver Mensaje Individual
  #8 (permalink)  
Antiguo 05/08/2013, 11:57
ger84
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Convertir .py en .exe en Python

con py2exe me compiló bien
Código Python:
Ver original
  1. #setupPy2exe.py
  2. from distutils.core import setup
  3. import py2exe
  4.  
  5. setup(
  6.     windows = [
  7.         {
  8.             "script": "menu_libro_blanco.py"
  9.         }
  10.     ],
  11. )

con cx_Freeze hay que ser mas explícito
Código Python:
Ver original
  1. #setupCx_Freeze.py
  2. import sys
  3. from cx_Freeze import setup, Executable
  4.  
  5. # Dependencies are automatically detected, but it might need fine tuning.
  6. build_exe_options = {"packages": ["random","time","Tkinter","modulepythong","os","sys","threading","time","imp","warnings"]}
  7.  
  8. # GUI applications require a different base on Windows (the default is for a
  9. # console application).
  10. base = None
  11. if sys.platform == "win32":
  12.     base = "Win32GUI"
  13.  
  14. setup(  name = "",
  15.         version = "0.1",
  16.         description = "",
  17.         options = {"build_exe": build_exe_options},
  18.         executables = [Executable("menu_libro_blanco.py", base=base)])

Y en ambos casos copié menu_libro_blanco.py en la misma carpeta que quedó el .exe, no es la solución mas elegante, pero a mí me funcionó