Open kylemcdonald opened 1 year ago
Before I was able to install on Mac, I had to add:
export CFLAGS="-I /opt/homebrew/include" export LDFLAGS="-L /opt/homebrew/lib"
Otherwise I got the error "lame/hip.c:750:10: fatal error: 'lame/lame.h' file not found" and "ld: library not found for -lmp3lame".
For me:
brew install lame
Export header files:
export CFLAGS="-I/usr/local/include" export LDFLAGS="-L/usr/local/lib"
Then install ok:
pip install streamp3
Before I was able to install on Mac, I had to add:
Otherwise I got the error "lame/hip.c:750:10: fatal error: 'lame/lame.h' file not found" and "ld: library not found for -lmp3lame".