$ sudo pip3 install numba
This comes out
RuntimeError: llvm-config failed executing, please point LLVM_CONFIG to the path for llvm-config
$ brew install llvm
$ sudo -s //Become root
$ export LLVM_CONFIG=/path/to/llvm-config
$ exit
$ sudo pip3 install llvmlite
Successfully installed llvmlite-0.8.0
$ sudo pip3 install numba
...
Successfully installed numba-0.22.1
That's it.
Recommended Posts