I have a python program running on OSX 10.7 that uses psutil and works fine when I run like this: python myapp.py
However, when I try to distribute the app as a standalone version with py2app, I am getting an error saying "No module named _psutil_osx". py2app is loading in the psutil module fine but it doesn't seem to like the sub-module called _psutil_osx. I suspect this is because this module gets loaded from a C file when psutil is compiled with gcc.
Does anyone know of a way to create a standalone version of a psutil app for Mac so that the user wouldn't have to have GCC/Xcode installed to compile these libraries ahead of time?
Thanks in advance