在 os x 上使用 ActivePython 执行 py2app 的第一步
我有一个简单的 python 程序,我想把它变成一个应用程序。 根据我的研究,py2app 是我所需要的。
我在 OS X(雪豹)上使用 ActivePython 2.7。 通过 PyPM 工具(包管理器)我安装了一个名为 py2app 的包。
py2app 的文档有一个教程页面 http://svn.pythonmac .org/py2app/py2app/trunk/doc/index.html#id7
它说我应该能够做到这一点作为第一步:
py2applet --make-setup MyApplication.py
但我在任何地方都找不到这样的可执行文件。我以为这会由软件包安装。
I have a simple python program I want to turn into an app.
py2app is what I need, according to my research.
I'm using ActivePython 2.7 on OS X (snow leopard).
via the PyPM tool (package manager) I have installed a package called py2app.
The documentation for py2app has a tutorial page http://svn.pythonmac.org/py2app/py2app/trunk/doc/index.html#id7
It says I should be able to do this as a first step:
py2applet --make-setup MyApplication.py
but I have no such executable anywhere that I can find. I thought this would have been installed by the package.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试运行此命令:
那么,您有
~/Library/Python/2.7/bin/py2applet
吗?您还可以将
~/Library/Python/2.7/bin/
添加到您的$PATH
(在~/.profile
中) - PyPM 会尝试这样做第一次运行时要做的事情。Try running this command:
So, do you have
~/Library/Python/2.7/bin/py2applet
?You can also add
~/Library/Python/2.7/bin/
to your$PATH
(in~/.profile
) - which PyPM tries to do on first run.