apt-get update
apt-get install cython build-essential libedit-dev
apt-get install llvm-4.0 llvm-4.0-dev llvm-dev
LLVM_CONFIG=/usr/lib/llvm-4.0/bin/llvm-config pip install llvmlite==0.19.0
LLVM_CONFIG=/usr/lib/llvm-4.0/bin/llvm-config pip install numba==0.32
pip install librosa==0.5.1I am able to successfully install without errors and also can import llvmlite and numba. However, when I import librosa I get the following error>> import librosa LLVM ERROR: Program used external function '__aeabi_unwind_cpp_pr0' which could not be resolved!I am running Python 2.7.12 with GCC 5.4.0 inside docker with ubuntu-14.04 base.
pi@raspberrypi:~ $ sudo pip3 install librosa==0.1.1
Collecting librosa==0.1.1
Could not find a version that satisfies the requirement librosa==0.1.1 (from versions: 0.2.0.linux-x86_64, 0.2.1.linux-x86_64, 0.2.0, 0.2.1, 0.3.0, 0.3.1, 0.4.0rc2, 0.4.0, 0.4.1rc0, 0.4.1, 0.4.2, 0.4.3rc0, 0.4.3, 0.5.0rc0, 0.5.0, 0.5.1)
No matching distribution found for librosa==0.1.1
pi@raspberrypi:~ $ sudo pip3 install librosa==0.1.0
Collecting librosa==0.1.0
Could not find a version that satisfies the requirement librosa==0.1.0 (from versions: 0.2.0.linux-x86_64, 0.2.1.linux-x86_64, 0.2.0, 0.2.1, 0.3.0, 0.3.1, 0.4.0rc2, 0.4.0, 0.4.1rc0, 0.4.1, 0.4.2, 0.4.3rc0, 0.4.3, 0.5.0rc0, 0.5.0, 0.5.1)
No matching distribution found for librosa==0.1.0
pi@raspberrypi:~ $ sudo pip3 install librosa==0.1.9
Collecting librosa==0.1.9
Could not find a version that satisfies the requirement librosa==0.1.9 (from versions: 0.2.0.linux-x86_64, 0.2.1.linux-x86_64, 0.2.0, 0.2.1, 0.3.0, 0.3.1, 0.4.0rc2, 0.4.0, 0.4.1rc0, 0.4.1, 0.4.2, 0.4.3rc0, 0.4.3, 0.5.0rc0, 0.5.0, 0.5.1)
No matching distribution found for librosa==0.1.9
pi@raspberrypi:~ $
Python 3.5.3 (default, Jan 19 2017, 14:11:04)
[GCC 6.3.0 20170124] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import librosa
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python3.5/dist-packages/librosa/__init__.py", line 12, in <module>
from . import core
File "/usr/local/lib/python3.5/dist-packages/librosa/core/__init__.py", line 109, in <module>
from .audio import * # pylint: disable=wildcard-import
File "/usr/local/lib/python3.5/dist-packages/librosa/core/audio.py", line 23, in <module>
BW_BEST = resampy.filters.get_filter('kaiser_best')[2]
IndexError: tuple index out of range