Python: py2app “ImportError: dlopen(): Library not loaded”

柔情痞子 提交于 2019-12-02 22:13:34

问题


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!


回答1:


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.



来源:https://stackoverflow.com/questions/12044043/python-py2app-importerror-dlopen-library-not-loaded

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!