I'm running on OSX, on which I understand Pyglet needs a 32 bit Python 
executable.

The .dmg from python.org is a 'universal binary', which prefers to run in 
64 bit mode, unless invoked using:

    arch -i386 python my-pyglet-app.py

This works. However, my application has no top level "my-application.py" 
script. Instead it has a 'main()' function which I've declared as an 
executable entry point using an entry in my setup.py:

        entry_points = {
            'console_scripts': ['{0} = {0}.main:main'.format(NAME)],

-- 
You received this message because you are subscribed to the Google Groups 
"pyglet-users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/pyglet-users/-/3j57QeVJwc0J.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/pyglet-users?hl=en.

Reply via email to