0
votes
5answers
35 views
Mac OS X app/service and stdin?
I'm debugging a service I'm developing, which basically will open my .app and pass it some data to stdin. But it doesn't seem like it's possible to something like:
open -a myapp.a …
2
votes
1answer
71 views
Python app distribution cross-platform
I want to distribute my app on OSX (using py2app) and as a Debian package.
The structure of my app is like:
app/
debian/
<lots of debian related stuff>
…
1
vote
3answers
80 views
How to trigger post-build using setuptools/distutils
I am building an application using py2app/setuptools, so once it creates application bundle I want to take some action on dist folder e.g. create a installer/upload it.
Is there a …
1
vote
2answers
352 views
Compiling a py2app working build for both Leopard and Snow Leopard?
I currently am making my PyObjC application work for Snow Leopard and I successfully compiled a standalone app. My question would be, how do I make the build to be also Leopard-com …
1
vote
1answer
106 views
py2app dropping wxpython (Snow Leopard)
After upgrading to Snow Leopard, I'm having trouble building my application. It looks like py2app is building and copying over wxPython, but when I run from the buld app, it can't …
2
votes
2answers
554 views
Has anyone successfully built a PyObjC app in Snow Leopard?
If you did, would you mind sharing how you did the pyobjc install? I was trying to do it by installing PythonMac 2.5 (for the standalone bundle thru py2app), and doing easy_install …
0
votes
2answers
42 views
Py2App Can’t find standard modules
I've created an app using py2app, which works fine, but if I zip/unzip it, the newly unzipped version can't access standard python modules like traceback, or os. The manpage for zi …
0
votes
1answer
102 views
py2app error: “can’t copy ‘%s’: doesn’t exist or not a regular file”
I'm trying to pack my Python app with py2app. I'm running the setup.py I created, and I get this error:
File "C:\Python26\lib\distutils\file_util.py", line 119, in copy_file
…
0
votes
1answer
101 views
py2app error: “’module’ object has no attribute ‘symlink’”
I'm trying to pack my Python app with py2app. I'm running the setup.py I created, and I get this error:
Traceback (most recent call last):
File "C:\Python26\lib\site-packages\py …
3
votes
4answers
248 views
Problem using py2app with the lxml package
I am trying to use 'py2app' to generate a standalone application from some Python scripts. The Python uses the 'lxml' package, and I've found that I have to specify this explicitly …
