-
-
Save lxm1117/3b7c1fc341631c61b7d26ca376d61ea1 to your computer and use it in GitHub Desktop.
Mac BLAS
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
| #Option 1 - install openblas with homebrew and link to CRAN installed R | |
| brew tap homebrew/science | |
| brew install openblas | |
| ln -sf /usr/local/Cellar/openblas/0.2.12/lib/libopenblas.dylib /Library/Frameworks/R.framework/Resources/lib/libRblas.dylib | |
| #Option 2 - install r with openblas through homebrew | |
| brew tap homebrew/science | |
| brew install r --with-openblas |
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
| #Option 1 - link CRAN installed R to veclib | |
| ln -sf /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/Versions/Current/libBLAS.dylib /Library/Frameworks/R.framework/Resources/lib/libRblas.dylib | |
| #Option 2 - install r with veclib through homebrew | |
| brew tap homebrew/science | |
| brew install r |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment