Skip to content

Instantly share code, notes, and snippets.

View slw07g's full-sized avatar
😅

Shanief slw07g

😅
View GitHub Profile
@slw07g
slw07g / numpy-openblas-macos-pip.sh
Last active August 30, 2020 05:18 — forked from yatsu/numpy-openblas-macos-pip.sh
Install numpy with enabling openblas using pip on macOS
# Setup HomeBrew: https://brew.sh/
brew install openblas
mkdir /tmp/numpy_local
cd /tmp/numpy_local
pip3 download --no-binary :all: --no-deps numpy
unzip numpy-*.zip # (assuming there's only one version in this folder)
cd numpy-1.19.1 # the version may be a later version than this
cat > site.cfg <<EOF
[openblas]