Python version is 3.4.2 (env) ishandutta2007@MacBook-Pro:~/Documents/Projects/my_proj$ pip install librosa Collecting librosa Collecting joblib>=0.12 (from librosa) Using
Solution 1:
After reading the error log carefully, realised we need llvm version 6 instead of llvm version 7 which I had by default,
Step 1:brew install llvm@6
Step 2: Added the following to ~/.bashrc
export LLVM_CONFIG=/usr/local/opt/llvm@6/bin/llvm-config
Step 3: Reload ~/.bashrc
source ~/.bashrc
Post a Comment for "Librosa Installation Via Pip Failing"