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

后端 未结 1 970
盖世英雄少女心
盖世英雄少女心 2021-01-26 00:00

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

相关标签:
1条回答
  • 2021-01-26 01:04

    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.

    0 讨论(0)
提交回复
热议问题