我使用這個,當我開始Python腳本蟒蛇3.2 Tkinter的圖標
root.wm_iconbitmap('icon.ico')
但其工作正常cx_freeze編譯腳本並試圖執行編譯後的文件,我得到以下錯誤消息後
File "D:\Programme\Python\Lib\tkinter\__init__.py", line 1553, in wm_iconbitmap
return self.tk.call('wm', 'iconbitmap', self._w, bitmap)
_tkinter.TclError: bitmap "icon.ico" not defined
因此無法找到圖標文件。 如何配置我的setup.py以包含圖標文件?
可能重複[如何使用cx \ _freeze時捆綁其他文件?](http://stackoverflow.com/questions/2553886/how-can-i-bundle-other-files-when-using-cx -freeze) – Brionius
請參閱文檔中的[使用數據文件](http://cx-freeze.readthedocs.org/en/latest/faq.html#using-data-files)。 –