This file contains 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
----------------------------------------------------------------------------------------------------------------- | |
brew | |
----------------------------------------------------------------------------------------------------------------- | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
Follow the next Steps shown in the Terminal | |
----------------------------------------------------------------------------------------------------------------- | |
pipenv | |
----------------------------------------------------------------------------------------------------------------- | |
cd ~ | |
echo 'export PATH=$HOME/Library/Python/3.9/bin:$PATH' >> .zshrc | |
pip3 install pipenv | |
----------------------------------------------------------------------------------------------------------------- | |
pyenv | |
----------------------------------------------------------------------------------------------------------------- | |
brew install pyenv | |
echo 'eval "$(pyenv init --path)"' >> ~/.zshrc | |
echo 'eval "$(pyenv init -)"' >> ~/.zshrc | |
----------------------------------------------------------------------------------------------------------------- | |
gcloud | |
----------------------------------------------------------------------------------------------------------------- | |
Download, install & extract matching version from: https://cloud.google.com/sdk/docs/install#mac | |
~/Downloads/google-cloud-sdk/install.sh | |
gcloud components install app-engine-python | |
gcloud components install app-engine-python-extras | |
gcloud init | |
----------------------------------------------------------------------------------------------------------------- | |
node + npm | |
----------------------------------------------------------------------------------------------------------------- | |
Download and install matching version from: https://nodejs.org/en/download/ | |
----------------------------------------------------------------------------------------------------------------- | |
enforce building grpcio | |
----------------------------------------------------------------------------------------------------------------- | |
echo 'export PIP_NO_BINARY=grpcio' >> ~/.zshrc | |
----------------------------------------------------------------------------------------------------------------- | |
clear pipenv cache | |
----------------------------------------------------------------------------------------------------------------- | |
pipenv --clear |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment