Skip to content

Instantly share code, notes, and snippets.

@XeoN-GHMB
Last active February 3, 2023 09:45
Embed
What would you like to do?
-----------------------------------------------------------------------------------------------------------------
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