$ sudo pip3 install numba
Cela sort
RuntimeError: llvm-config failed executing, please point LLVM_CONFIG to the path for llvm-config
$ brew install llvm
$ sudo -s //Devenir 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
C'est tout.
Recommended Posts