Last active
July 30, 2019 01:48
-
-
Save serihiro/0ff37157ed6e405e7ccabd6499b5cee9 to your computer and use it in GitHub Desktop.
install numpy with Intel MKL at MacOS
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
# ~/.numpy-site.cfg | |
[mkl] | |
library_dirs = /opt/intel/mkl/lib | |
include_dirs = /opt/intel/mkl/include | |
mkl_libs = mkl_rt | |
lapack_libs = |
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
# ~/.config/pip/pip.conf | |
[install] | |
no-binary = numpy,scipy | |
[wheel] | |
no-binary = numpy,scipy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment