使我的python程序成为一个应用程序

时间:2014-04-19 17:28:08

标签: python syntax syntax-error py2app requires

我试图让我的python程序成为mac的应用程序。所以我安装了程序

  

py2app

我制作了我的剧本然后我制作了我的" setup.py"脚本作为你管教程说。但是当我进入终端的下一步时,错误信息会不断弹出:

(这是我输入的步骤)

  

python / Users /(我的名字)/Setup.py py2app

并且错误代码一直在说

  File "/Users/jonah/Setup.py", line 8
setup_requires=["py2app"],
             ^
  

SyntaxError:语法无效

这是setup.py中的代码:

#Script for building the the app
#USAGE: python setup.py py2app

from setuptools import setup

setup(
    app=["Kirby's Dream Test script.py"]
    setup_requires=["py2app"],
)

如何让它发挥作用? 谢谢!

2 个答案:

答案 0 :(得分:1)

嗯,你的初学者缺少逗号:

setup(
    app=["Kirby's Dream Test script.py"],
    setup_requires=["py2app"],
)

答案 1 :(得分:0)

您在,字段后遗漏了app

setup(
    app=["Kirby's Dream Test script.py"], # you need this comma
    setup_requires=["py2app"],
)