在 os x 上使用 ActivePython 执行 py2app 的第一步

发布于 2024-10-30 20:19:49 字数 527 浏览 1 评论 0原文

我有一个简单的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

走过海棠暮 2024-11-06 20:19:49

尝试运行此命令:

$ pypm files py2app | grep py2applet
~/Library/Python/2.7/bin/py2applet 
~/Library/Python/2.7/lib/python/site-packages/py2app/script_py2applet.py 
$

那么,您有 ~/Library/Python/2.7/bin/py2applet 吗?

您还可以将 ~/Library/Python/2.7/bin/ 添加到您的 $PATH (在 ~/.profile 中) - PyPM 会尝试这样做第一次运行时要做的事情。

Try running this command:

$ pypm files py2app | grep py2applet
~/Library/Python/2.7/bin/py2applet 
~/Library/Python/2.7/lib/python/site-packages/py2app/script_py2applet.py 
$

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文