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 which OS X computer I test it on.
ImportError: dlopen(/Users/transfer15/Desktop/app/dist/PCMAlign/app/Contents/Resources/lib/python2.7/numpy/linalg/lapack_lite.so, 2): Library not loaded: @rpath/libmkl_intel_lp64.dylib
Referenced from: /Users/transfer15/Desktop/app/dist/PCMAlign/app/Contents/Resources/lib/python2.7/numpy/linalg/lapack_lite.so
Reason: image not found
This is somewhat strange to me because if I follow the filepath I can see lapack_lite.so
in the correct folder.
Is there any fix for this? Or, is there any way to exclude this library, since I'm not using linear algebra (pretty much just using the numpy arrays) so as to avoid this error?
Thanks!