-
Notifications
You must be signed in to change notification settings - Fork 206
Sebastian Böck edited this page Oct 17, 2015
·
8 revisions
Right now this is a loose collection of some Q&A:
Q: I get ImportErrors
A: Set your PYTHONPATH and export it, e.g. export PYTHONPATH='/path/to/madmom/'
Q: Why does it crash on Mac OS X?
A: You most probably have numpy and scipy linked against the Accelerate Framework. Rebuild these modules to be linked against ATLAS to gain multi-threaded support.
Q: I get out of bounds errors, tests fails or other weird errors
A: Make sure that you have recent numpy, scipy and cython versions installed and that your compiled modules are up to date. Update them with pip install --upgrade numpy scipy cython and python setup.py build_ext --inplace.