Skip to content

Instantly share code, notes, and snippets.

@mvbattista
Last active July 2, 2023 02:45
Show Gist options
  • Select an option

  • Save mvbattista/ab950f735c5649775fbf4e57010b97cb to your computer and use it in GitHub Desktop.

Select an option

Save mvbattista/ab950f735c5649775fbf4e57010b97cb to your computer and use it in GitHub Desktop.
Prerequisite startup script for VBT
#!/bin/sh
echo "Install XCode CLI Tool"
xcode-select --install
echo "Installing Homebrew"
if test ! $(which brew); then
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
fi
brew update
echo "Installing Homebrew Packages"
brew install 'python3'
brew install 'virtualenv'
brew install 'poetry'
brew install --cask 'pycharm-ce'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment