Skip to content Skip to sidebar Skip to footer

Py2app Problems, Getting Errors

I'm trying to test out the functionality of py2app, for creating standalone mac applications. I generated a setup file for my test code, called 'hello.py'. ''' This is a setup.py s

Solution 1:

There is a small hack that will work for this problem,

  1. Go to your path /Users/Apollo/miniconda/lib/python2.7/site-packages/macholib/MachOGraph.py and open this file.
  2. On line 49, change loader=loader.filename to loader_path=loader.filename

Run the setup.py again.

Post a Comment for "Py2app Problems, Getting Errors"