I try to run Numba 0.39 on MacOS X 10.9, Python 3.7 64-bit. When importing numba, I get this:
ImportError: Numba requires at least version 0.25.0 of llvmlite.
Installed version is 0.24.0.
Please update llvmlite.
My version is 0.24 which is the latest.
What's wrong here? Thanks for your help.
Thanks for the report. Are you using conda? If so, what version of Numba do you have according to conda list. For example I have:
numba 0.40.0.dev0+95.g8c3d562 <pip>
because I'm on the 0.40.0dev0 series and installed manually!
I experienced the same error:
ImportError: Numba requires at least version 0.26.0 of llvmlite.
Installed version is 0.25.0.
Please update llvmlite.
The most recent is 0.25.0.
@AlexPnt are you working off a development version of Numba? If so, the llvmlite dependency was recently updated to 0.26 for working towards the next release. You can get the latest llvmlite version from the Numba channel with:
$ conda install -c numba llvmlite
Presume this is resolved. Closing.
Most helpful comment
@AlexPnt are you working off a development version of Numba? If so, the llvmlite dependency was recently updated to 0.26 for working towards the next release. You can get the latest
llvmliteversion from the Numba channel with: