py2app

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 returned integer. On Python2.6 I get: AttributeError: 'module' object has no attribute 'TickCount' This is on Snow Leopard. Is there some...

My py2app app will not open. What's the problem?

Hi, I'm writing a simple game with python, pygame and py2app. (I use python 2.6) When I build my game in alias mode, it works fine, but when I build for deployment, the app I get crashes immediately after lunching. Anyone know what's going on? ...

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 problem with modulegraph.py but I have the most update to date version. This happens even with a bare minimum test file with no imports other ...

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 etc). All works fine running from the python interpreter, and even when compiled to a windows binary using py2exe. I tried building a OSX ...

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 not included with SL... be it from homebrew, macports, python.org, etc. Can anyone give me some simple steps to follow to get QT, PyQT, an...

Use py2app with Matplotlib and its Tex formatting? Dvipng not found.

I have an application put together in py2app on OS X 10.6 which uses Matplotlib to generate graphs. (Using py2app version 0.5.3 and matplotlib version 0.99.3, if it matters.) I have the Tex formatting option enabled: ... from matplotlib import rc rc('text', usetex=True) ... The script works fine when executed in the command line, incl...

Slim down Python wxPython OS X app built with py2app?

I have just made a small little app of a Python wxPython script with py2app. Everything worked as advertised, but the app is pretty big in size. Is there any way to optimize py2app to make the app smaller in size? ...

Does ftplib work in py2app?

Hi. I have a Python application that backs up to an afp server. I also need to get some information from an ftp server. When I just run my Python script from Terminal, it works just fine. But then if I compile it into an application using py2app, it gives me an error. py2app doesn't really say what the error is. If I comment out the lin...