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
| echo "Creating an SSH key for you..." | |
| ssh-keygen -t rsa | |
| echo "Please add this public key to Github \n" | |
| echo "https://github.com/account/ssh \n" | |
| read -p "Press [Enter] key after this..." | |
| echo "Installing xcode-stuff" | |
| xcode-select --install |
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
| # Setup HomeBrew: https://brew.sh/ | |
| brew install openblas | |
| pip download --no-binary :all: --no-deps numpy | |
| unzip numpy-1.18.2.zip # (you may have newer version) | |
| cd numpy-1.18.2 | |
| cat > site.cfg <<EOF | |
| [openblas] | |
| libraries = openblas | |
| library_dirs = $(brew --prefix openblas)/lib |
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
| #!/bin/sh | |
| # 1) Install Xcode 12 | |
| # 2) Install command line tools: `xcode-select --install` | |
| # 3) Install Homebrew | |
| # 4) brew install zlib bzip2 xz | |
| CFLAGS="-I$(brew --prefix zlib)/include -I$(brew --prefix bzip2)/include -I$(brew --prefix xz)/include" \ | |
| LDFLAGS="-L$(brew --prefix zlib)/lib -L$(brew --prefix bzip2)/lib -L$(brew --prefix xz)/lib" \ | |
| pyenv install 3.8.6 |