我有一个用python编写的GUI程序,并与py2exe
打包在一起。我现在想使用Esky
来允许自动更新。
但是当我运行python setup.py bdist_esky
时,我收到以下错误:
RuntimeError: don't call setup(windows=[...]) with esky; use setup(scripts=[...]) instead
更改为scripts
时,出现以下错误:
TypeError: Must specify name if script is not a file
我无法摆脱它。有什么帮助吗?
(setup.py:http://pastebin.com/B3yGJERq)
答案 0 :(得分:2)
脚本应该是esky.bdist_esky.Exectuable
个实例的列表。