import pygameworks fine for me, but import pygame.fontcrashes with an error:
ImportError: dlopen(/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pygame/font.so, 2): Library not loaded: /usr/local/lib/libpng15.15.dylib
Referenced from: /usr/local/lib/libfreetype.6.dylib
Reason: Incompatible library version: libfreetype.6.dylib requires version 30.0.0 or later, but libpng15.15.dylib provides version 20.0.0
This is in Python 2.7 (not the system version), Mac OS 10.9. I installed libpng-1.6.9 to the idea that libfreetype wants a later version, but that didn't seem to help.
source
share