I have a script that installs Python, and then installs some modules modules with:
subprocess.call("python setup.py install")
It works OK on windows with py2exe. But with Mac, using py2app, I get the following error when installing the additional modules:
File setup.py
from distutils.core import setup
ImportError: No module named distutils.core
I tried explicitly including distutils when building the .app bundle, with python setup.py py2app --packages distutils, but then I get this error:
error: invalid command 'install'
Any ideas on what the problem might be?