Je suis accro à cx_freeze, alors prenez note. L'environnement est window7 (64 bits), python est Python 2.7.2 (par défaut, 12 juin 2011, 15:08:59) [MSC v.1500 32 bits (Intel)] sur win32.
setup.py Exemple de setup.py.
setup.py
import sys
from cx_Freeze import setup, Executable
base = None
if sys.platform == "win32":
base = "Win32GUI"
setup(
name = "foo",
version = "0.1",
description = "foo",
executables = [Executable("foo.py", base = base)])
Depuis la ligne de commande
python setup.py build
Vous pouvez créer un exe avec.
_tkinter.TclError: Can't find a usable init.tcl in the following directories: C:/home/workspace/tawami/software/lib/tcl8.5 C:/lib/tcl8.5 C:/lib/tcl8.5 C:/library C:/library C:/tcl8.5.10/library C:/tcl8.5.10/library
Définissez la variable d'environnement TCL_LIBRARY sur C: \ Python27 \ tcl \ tcl8.5, TK_LIBRARY sur C: \ Python27 \ tcl \ tk8.5, etc., en fonction de votre environnement.
version conflict for package "Tcl": have 8.5.10, need exactly 8.5.2
Le paquetage commenté nécessite -exact Tcl 8.5.2 dans C: \ Python27 \ tcl \ tcl8.5 \ init.tcl et c: /lib/tk8.5/tk.tcl.
Recommended Posts