Mac 上的 Titanium 桌面构建
我正在尝试使用 tibuild.py 文件构建一个简单的桌面应用程序。这是我传递的命令:
tibuild.py -v -n -o osx -t bundle -a . -s -d ~/tmp ~/src/test
当我运行此命令时,我收到一条错误消息:
File "/Users/seanoshea/eyefi/svn/manager/ti/build/titanium_desktop/sdk/app.py", line 4, in <module>
import effess
ImportError: No module named effess
我只是使用 Mac OS X 附带的库存 Python 版本:
seanosheas-macbook-pro-2:sdk seanoshea$ python --version
Python 2.6.1
seanosheas-macbook-pro-2:sdk seanoshea$ which python
/usr/bin/python
seanosheas-macbook-pro-2:sdk seanoshea$
我必须手动安装 Python 模块 effess ?
I'm trying to build a simple desktop application using the tibuild.py file. Here's the command I'm passing:
tibuild.py -v -n -o osx -t bundle -a . -s -d ~/tmp ~/src/test
When I run this, I get an error saying:
File "/Users/seanoshea/eyefi/svn/manager/ti/build/titanium_desktop/sdk/app.py", line 4, in <module>
import effess
ImportError: No module named effess
I'm just using the stock Python version which comes with Mac OS X:
seanosheas-macbook-pro-2:sdk seanoshea$ python --version
Python 2.6.1
seanosheas-macbook-pro-2:sdk seanoshea$ which python
/usr/bin/python
seanosheas-macbook-pro-2:sdk seanoshea$
Do I have to manually install the Python module effess
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明,我缺少一个名为 Kroll 的构建工件。 effess.py 包含在该包中,您只需将其弹出到与 tibuild.py 文件相同的目录中
It turns out that I was missing a build artefact called Kroll.
effess.py
is included in that package, and you just need to pop it in the same directory as thetibuild.py
file