我在如何执行 python 文件方面遇到了问题。 出于某种原因,pyinstaller 说:“致命错误”并且脚本无法执行。 这是我的脚本。
def resource_path(relative_path):
if hasattr(sys, '_MEIPASS'):
return os.path.join(sys._MEIPASS, relative_path)
return os.path.join(os.path.abspath("."), relative_path)
from tkinter import *
from tkinter.messagebox import showinfo
from time import time, strftime
root = Tk()
root.geometry('1000x1000')
root.title('PyIme -- testing your knowledge')
img = ('wm', 'iconphoto', root._w, PhotoImage(file = 'witch.png'))
root.tk.call(img)
root.mainloop()