Skip to content

Instantly share code, notes, and snippets.

@kevin-keraudren
Created March 1, 2016 10:02
Show Gist options
  • Save kevin-keraudren/0c6a1bc6e0068e4c6696 to your computer and use it in GitHub Desktop.
Save kevin-keraudren/0c6a1bc6e0068e4c6696 to your computer and use it in GitHub Desktop.
# http://blog.seljebu.no/2014/11/22/install-numba-in-osx-yosemite-with-brew/
# http://www.australsounds.com/2014/10/installing-numba-in-os-x-1010.html
brew tap homebrew/versions
brew install --disable-assertions --rtti llvm37
git clone https://github.com/numba/llvmlite
cd llvmlite
LLVM_CONFIG=/usr/local/Cellar/llvm37/3.7.1/bin/llvm-config-3.7 python setup.py install
cd ..
git clone https://github.com/numba/numba.git
cd numba
LLVM_CONFIG=/usr/local/Cellar/llvm37/3.7.1/bin/llvm-config-3.7 python setup.py install
cd ..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment