Skip to content Skip to sidebar Skip to footer

Linking To Audiolab In Python2.6 On Osx

I've been unable to get scikits.audiolab working on OS X. I've tried easy_install and building from source, but both give me the same error: ----> 1 import scikits.audiolab /L

Solution 1:

Audiolab requires libsndfile. I had installed that via MacPorts, but it had built as x86_64 only by default.

Deleting all installs and reinstalling libsndfile with the +universal flag built it as i386 and x86_64.

Now I could install audiolab from source and it linked properly. :)

Post a Comment for "Linking To Audiolab In Python2.6 On Osx"