Last active
January 30, 2023 16:06
-
-
Save akelch/0e28dce2ac612cc36bcf93d9bc698d0f to your computer and use it in GitHub Desktop.
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
----------------------------------------------------------------------------------------------------------------- | |
Python 3 | |
----------------------------------------------------------------------------------------------------------------- | |
open a Terminal and call python3. Follow the install instruction | |
----------------------------------------------------------------------------------------------------------------- | |
brew | |
----------------------------------------------------------------------------------------------------------------- | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
----------------------------------------------------------------------------------------------------------------- | |
pipenv | |
----------------------------------------------------------------------------------------------------------------- | |
cd ~ | |
echo 'export PATH=$HOME/Library/Python/3.8/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 | |
Follow the installer DONT install Python 3.7 | |
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/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment