0
我想在cv_freeze
庫中使用創建我的python腳本來exe應用程序。我的應用程序只使用tkinter
,但是當我嘗試構建exe文件時:出現TCL_LIBRARY
錯誤。這是爲什麼?這是我的設置代碼:創建python腳本爲exe
import cx_Freeze
import sys
import matplotlib
base = None
if sys.platform == 'win32':
base = "Win32GUI"
executables = [cx_Freeze.Executable("tkinterVid28.py", base=base, icon="clienticon.ico")]
cx_Freeze.setup(
name = "SeaofBTC-Client",
options = {"build_exe": {"packages":["easygui","matplotlib"]}},
version = "0.01",
description = "Sea of BTC trading application",
executables = executables
)
,這是myGUI Python代碼:
import tkinter
top = tkinter.Tk()
# Code to add widgets will go here...
top.mainloop()
我使用的python 3.6, 感謝幫助或沒有幫助。
它現在生成的exe文件。但我得到這個錯誤,當我打開exe文件:http://i.imgur.com/v2YMpBN.png – odri
@odri試試這個https://stackoverflow.com/questions/43568915/import-tkinter-if-this-失敗,您的python可能不會被配置爲tk – James
感謝現在的工作。非常感謝! – odri