Toolchains
~/.zprofile
, similar to ~/.bash_profile
, but for zsh
brew install wget
/Library/Java/JavaVirtualMachines/
brew install maven
wget [<https://golang.org/dl/go1.16.darwin-amd64.pkg>](<https://golang.org/dl/go1.16.darwin-amd64.pkg>)
Python3.9 Setup
pip3.9 install virtualenv
pip3.9 install virtualenvwrapper
Added following in ~/.zprofile
## Virtualenvwrapper setup
export VIRTUALENVWRAPPER_PYTHON=/opt/homebrew/bin/python3.9
export VIRTUALENVWRAPPER_VIRTUALENV=/opt/homebrew/bin/virtualenv
source /opt/homebrew/bin/virtualenvwrapper.sh
Python3.8 Setup (required for tensorflow on M1)
brew install [email protected]
virtualenv --python /opt/homebrew/opt/[email protected]/bin/python3 /Users/harsh.l/.virtualenvs/ds
pip install --upgrade [<https://github.com/apple/tensorflow_macos/releases/download/v0.1alpha3/tensorflow_macos-0.1a3-cp38-cp38-macosx_11_0_arm64.whl>](<https://github.com/apple/tensorflow_macos/releases/download/v0.1alpha3/tensorflow_macos-0.1a3-cp38-cp38-macosx_11_0_arm64.whl>) [<https://github.com/apple/tensorflow_macos/releases/download/v0.1alpha3/tensorflow_addons_macos-0.1a3-cp38-cp38-macosx_11_0_arm64.whl>](<https://github.com/apple/tensorflow_macos/releases/download/v0.1alpha3/tensorflow_addons_macos-0.1a3-cp38-cp38-macosx_11_0_arm64.whl>)
xcode
after macOS Big Sur update
xcode-select --install