我知道已经有question这样的了,但答案对我不起作用。 当我在程序中追加py2exe参数并运行它时,我注意到它缺少一堆文件。当我运行exe时,它说
File "boot_common.py", line 46 in <module>
ImportError: No module named 'ctypes'
任何人都可以帮我解决这个问题吗?这是我的代码:
from distutils.core import setup
import py2exe, sys
import tkinter as tk
from tkinter import filedialog
input('Press Enter to continue and select your Python file you want to convert when the dialog shows up...')
tk.Tk().withdraw()
file_path = tk.filedialog.askopenfilename()
sys.argv.append("py2exe")
setup(console=[file_path])
如果它有帮助,我使用的是32位Python解释器。