我在Windows上使用python 3.6。我下载了“cx_Freeze-4.3.3.win-amd64-py3.3”,将我的“python脚本”改为exe文件。 我设法在build文件夹下获得了一个exe文件,但它不起作用。
这是我的代码
#script file which I named scriptbutton.py.txt
print("hello")
这是我用于设置脚本的代码。(scriptsetup.py.txt)
import os.path
import sys
from cx_Freeze import setup, Executable
os.environ['TCL_LIBRARY'] = "C:\\LOCAL_TO_PYTHON\\Python35-32\\tcl\\tcl8.6"
os.environ['TK_LIBRARY'] = "C:\\LOCAL_TO_PYTHON\\Python35-32\\tcl\\tk8.6"
setup (name= 'scripting', version='3.1', description='make exe file',
executables= [Executable ("scriptbutton.py.txt", base="Win32GUI")])
当我双击exe文件时,这是错误消息。
感谢任何帮助。
干杯