我刚刚在Python中加星号编码并希望使用cx冻结创建一个.exe独立版但我遇到了tkinter的问题。我能够生成一个非常简单的窗口但是当我添加tkinter时,它不再起作用了。
以下是我的代码:
tkinter2.py:
#!/usr/bin/env python
# -*-coding:Latin-1 -*
import tkinter
base = None
if sys.platform == 'win32':
base="Win32GUI"
TK=Tk()
# Function called when user hit the keyboard
def clavier(event):
global coords
touche = event.keysym
if touche == "Up":
coords = (coords[0], coords[1] - 10)
elif touche == "Down":
coords = (coords[0], coords[1] + 10)
elif touche == "Right":
coords = (coords[0] + 10, coords[1])
elif touche == "Left":
coords = (coords[0] -10, coords[1])
# change of coordinates for the rectangle
canvas.coords(rectangle, coords[0], coords[1], coords[0]+25, coords[1]+25)
# canvas creation
canvas = Canvas(TK, width=250, height=250, bg="ivory")
# initial coord
coords = (0, 0)
#rectangle creation
rectangle = canvas.create_rectangle(0,0,25,25,fill="violet")
canvas.focus_set()
canvas.bind("<Key>", clavier)
# canvas creation
canvas.pack()
然后在cmd中,这就是我所做的: 我转到C:\ Python34并点击python.exe“Scripts \ cxfreeze”“Scripts \ tkinter2.py” 它似乎编译,但说有些模块丢失,似乎是tkinter。如果我启动创建的.exe,我有“ImportError:no module name'Tkinter'”。 我正在使用Python 3.4并安装了相应的cx_freeze。
你知道我为什么会有这样的错误吗?是因为冻结py脚本时无法使用tkinter的某些底层组件吗?
谢谢, STAP
答案 0 :(得分:0)
通常在使用CX_Freeze时,您将创建一个setup.py文件(您可以将其重命名为您想要的任何内容)。然后构建你通常会做python setup.py build&#39; (这是在命令提示符下,您将cd到存储setup.py和tkinter2.py文件的目录)。 Tk无法使用cx冻结构建的最常见原因是您错过了DLL文件。使用以下代码创建一个setup.py并尝试一下:
import sys
import cx_Freeze
import os.path
base = None
if sys.platform == 'win32':
base = "Win32GUI"
PYTHON_INSTALL_DIR = os.path.dirname(os.path.dirname(os.__file__))
os.environ['TCL_LIBRARY'] = os.path.join(PYTHON_INSTALL_DIR, 'tcl', 'tcl8.6')
os.environ['TK_LIBRARY'] = os.path.join(PYTHON_INSTALL_DIR, 'tcl', 'tk8.6')
executables = [cx_Freeze.Executable("tkinter2.py", base=base)]
options = {
'build_exe': {
'include_files':[
os.path.join(PYTHON_INSTALL_DIR, 'DLLs', 'tk86t.dll'),
os.path.join(PYTHON_INSTALL_DIR, 'DLLs', 'tcl86t.dll'),
],
},
}
cx_Freeze.setup(
name = "Stack Overflow Q",
options = options,
version = "1.0",
description = 'Stack Overflow Q',
executables = executables
)
编辑:我也注意到你在节目结束时没有TK.mainloop()