On 23 Aug, 2011, at 10:16, Vinay Sajip wrote:
> I've installed Python 3.3 for some testing on a Leopard machine, and now a 2.x
> PyObjC application won't run from its bundle because the 3.3 binary in
> /Library/Frameworks/Python.framework is picked up. Of course if I run
>
> python MyBundled.App
On 18 Aug, 2011, at 20:59, Dan Ross wrote:
> Does py2app work with PyPy? Has anyone tried it?
It probably doesn't work with PyPy at the moment: py2app creates an application
bundle by copying your python code, the python framework and common main
executable into the appropriate directory struc
Ronald Oussoren mac.com> writes:
> And one final workaround: the configure script has an option named
'--with-framework-name=NAME'. This
> will install the framework as NAME.framework instead of Python.framework. I
use this to install
> multiple build variants of Python, and to keep my regular P
Does virtualenv work on Mac nowadays? It might be another approach.
It works great for keeping different installations on the same machine
separate. Not sure how it would work with framework builds though.
On Thu, Aug 25, 2011 at 7:18 AM, Vinay Sajip wrote:
> Ronald Oussoren mac.com> writes: