Tagged Questions
16
votes
7answers
2k views
Is it possible to deploy a Python application on the Mac App Store?
Does Apple accept Python applications for distribution on the new Mac App Store?
If so, how should the application be packaged? Is py2app sufficient? Something else?
6
votes
3answers
627 views
Executable path to Mac App
In a py2app/Mac Application Bundle, is there a way to spawn another instance of same app from within the app, by passing different command line arguments?
or given a mac app bundle, how can I run it ...
5
votes
2answers
2k 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 of PyObjC. I always ...
3
votes
3answers
751 views
How to change the app name in OSX menubar in a pure-Python application bundle?
I am trying to create a pure-Python application bundle for a wxPython app. I created the .app directory with the files described in Apple docs, with an Info.plist file etc. The only difference between ...
3
votes
1answer
815 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 find wx.
2
votes
1answer
236 views
How to create a Mac OS X app with Python?
I want to create a GUI application which should work on Windows and Mac. For this I've choose Python.
The problem is on Mac OS X.
There are 2 tools to generate an ".app" for Mac: py2app and ...
2
votes
1answer
133 views
stuck with first steps with py2app on os x with ActivePython
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 ...
2
votes
1answer
448 views
py2app: how to include modules that will be loaded by __import__?
I have a Python application that loads python modules dynamically at run time (using __import__). The modules to load are in a package called 'plugins' (i.e. subfolder called plugins with __init__.py ...
2
votes
4answers
807 views
Evt.TickCount() not found with Python2.6 on OSX 10.6.3
With Python2.6, the Evt module (from Carbon import Evt) does not have seem to respond to TickCount() on OSX. But Python2.5 is fine:
from Carbon import Evt
s = Evt.TickCount()
On Python2.5 I get a ...
1
vote
1answer
113 views
Compile 64-bit Mac app with py2app
I've compiled a Python screen saver on my Mac OS X 10.7 using py2app 0.6.3, but when I open the screen saver in System Preferences i get the following message:
You cannot use the Silly Balls ...
1
vote
2answers
198 views
cvs command not found by a Python Mac app created using py2app
Some system/software info before getting started:
OS: Mac OS X 10.7.1
Python: Active Python 2.7.2.5
wxPython: wxPython2.9-osx-2.9.1.1-cocoa-py2.7
I have a small wxpython-based Mac app that just ...
1
vote
2answers
236 views
py2app and python 2.7 OSX 10.6
Does py2app work with python 2.7 on Snow Leopard?
I can't even get a 'hello world' to compile properly.
Here's what I'm doing...
My script is
print "Hello World"
and then from a terminal:
cd ...
1
vote
1answer
453 views
releasing Mac apps with wxPython and py2app that work on multiple versions of OS X
I periodically release a dmg for a Python/wxPython app with py2app, and it has been working great. I only have access to a Snow Leopard machine and I would like to ensure that my app works on as many ...
1
vote
2answers
393 views
py2app built app displays `ERROR: pygame.macosx import FAILED` on other machines
Trying to build an app on the Mac using py2app. Got everything working fine on my machine, but when moving the app to another, it crashes and the console displays this error.
ERROR: pygame.macosx ...
1
vote
3answers
546 views
Creating an Python/py2app application that simply opens a terminal on launch?
I've written a nice Python application that is basically an HTTP proxy for SMS modems, and I'd like to make it a double-clickable application on Macs. So far I've been including a .commmand file which ...
0
votes
1answer
110 views
PySide application isn't working on other computers when bundled with py2app
I have a small application I'm trying to bundle with py2app. At first I ran into a problem with PySide not linking correctly once bundled, but I fixed that (locally, at least) by adding ...
0
votes
0answers
70 views
MacOS .app creation trouble = py2app + Qt + MySQL (libqsqlmysql.dylib)
I have a big trouble with building PyQt application with MySQL. I compile missed libqsqlmysql.dylib but builded APP still not have include QMySQL after run.
I find 2 possible solution
1) using a ...
0
votes
1answer
53 views
How to compile 64 bit Python library (SIP, for example) at the 32 bit old Mac with py2app?
I need to compile 64 bit libraries for Python (SIP for example) instead 32-bit, compiled by my old 32bit Mac for using to .app bandle at new Macs.
Looks like similar question placed here Is it ...
0
votes
3answers
162 views
How to force py2app to run app in 32-bit mode
I am trying to build an app bundle with py2app on Mac OS X 10.6. The app uses some libraries which are only compiled for 32-bit, so when the app is run there is an ImportError "no appropriate 64-bit ...
0
votes
2answers
136 views
How to create Mac application bundle for Python script via Python
I want to create a simple Mac application bundle which calls a simple Python script. I want to do that in Python.
Is there an easy way?
I tried to use py2app but that fails somehow, e.g.:
from ...
0
votes
1answer
90 views
py2app dependency problem
i will create a OS X Package using py2app. It is a Game using the FIFE-Engine.
If i launch the resulting .app Bundle on another Mac i get this error Message:
Failed to load FIFE: ...
0
votes
2answers
361 views
How to specify py2app icon?
How do I specify the icon file when using py2app?
Just now I create the setup file:
py2applet --make-setup MyApplication.py
and then build the application bundle:
python setup.py py2app -A
...
0
votes
3answers
380 views
how do I use py2app?
Ok - here goes. I am trying to learn how to use py2app, so I created a simple python file; just hello_world.py
#! /usr/bin/env python
def main():
print "Hello"
if __name__=="__main__":
main()
...
0
votes
0answers
46 views
Py2App location of app file
I am working with py2app, and I need a way to get the location of the .app file. Do you know how to do this?
Thank you very much in advance.
0
votes
1answer
147 views
Py2app build runs perfectly when run from command line or the executable in the pkg, but not when the app is double clicked
I have a program that I'm trying to distribute with py2app. When I run the program from the command line, it works without any problems. It also works if I go into the package that py2app creates and ...
0
votes
1answer
142 views
Including distutils in a py2app bundle
I have a script that installs Python, and then installs some modules modules with:
subprocess.call("python setup.py install")
It works OK on windows with py2exe. But with Mac, using py2app, I get ...
0
votes
3answers
896 views
Steps for how to install QT, PyQT, and PySide on OS X Snow Leopard
I've had some problems installing QT on Snow Leopard and I'm hoping that I can benefit from someone else who's been in this position. :)
I'm assuming that I'll need to use a version of python that's ...
0
votes
1answer
225 views
Py2app Error in module graph
A few weeks ago, I was able to build Apps using py2app. I just tried it again and during the build process, I get dumped into a pdb session with the stack trace below.
It appears to be in import ...
0
votes
2answers
135 views
When using py2app, is there a way to customize the traceback dialog that gets displayed? (Or show a different Cocoa dialog?)
Is there an easy way to get any more control over the py2app traceback dialogs, or just a nice way to display GUI messages?
If I raise an exception in my py2app script, I get a dialog that says ...
0
votes
5answers
389 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.app < foo_in.txt
...
0
votes
3answers
205 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 zip claims that it ...
0
votes
1answer
605 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 ...
0
votes
1answer
639 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
"can't copy '%s': ...