Trying to install llvmlite
via pip
by running
pip install llvmlite
constantly gives me this error:
RuntimeError: <path> failed executing, please point LLVM_CONFIG to the path for llvm-config
error: command '/Users/sfalk/miniconda3/envs/asr-service/bin/python' failed with exit status 1
----------------------------------------
Now, I am on Python 3.5
$ python --version
Python 3.5.6 :: Anaconda, Inc.
And just running pip install llvmlite
will give me this:
RuntimeError: Building llvmlite requires LLVM 7.0.x, 7.1.x or 8.0.x, got '10.0.0'. Be sure to set LLVM_CONFIG to the right executable path.
I installed LLVM 8 via brew
brew install llvm@8
Setting LLVM_CONFIG
to either does not work.
/usr/local/opt/llvm@8/bin
(were I assumedllvm-config
to be), or/usr/local/opt/llvm@8/Toolchains/LLVM8.0.1.xctoolchain/usr/bin
(where I actually foundllvm-config
to be)
And I keep getting some version of:
RuntimeError: /usr/local/opt/llvm@8/Toolchains/LLVM8.0.1.xctoolchain/usr/bin failed executing, please point LLVM_CONFIG to the path for llvm-config
What am I missing here?
numba
answers the question? – Genetics