Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Issue with python's Numba, no module llvmlite.binding

Tags:

python

numba

There is extensive documentation out there about Numba, and the llvm compiler. What I did so far on my OS X 10.10 (Yosemite)

pip install numba

brew install llvm

so far, so good. But I cannot get around this error message when I import numba

import numba

error message

I tried to pull the git repository of llvmlite and set it up but to no avail. What is the problem here ?

like image 460
Mathusalem Avatar asked Nov 09 '22 18:11

Mathusalem


1 Answers

I was facing the same issue, which was resolved by installing llvm using conda install llvmlite and numba using conda install numba.

like image 136
user517679 Avatar answered Nov 14 '22 23:11

user517679