I\'ve written a python script that does some work with numpy and scikit\'s audiolab. I want to create a standalone app using py2app but I keep getting the same error no matter w
Having encountered the same problem recently (Python 2.7, trying to import numpy version 1.11), downgrading the version of numpy cleared up the error.
If you used pip to install numpy, you can downgrade with: pip install 'numpy<1.7'. It is possible that a higher version may work out for you.
pip install 'numpy<1.7'