Created
March 1, 2016 10:02
-
-
Save kevin-keraudren/0c6a1bc6e0068e4c6696 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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