Last active
July 2, 2023 02:45
-
-
Save mvbattista/ab950f735c5649775fbf4e57010b97cb to your computer and use it in GitHub Desktop.
Prerequisite startup script for VBT
This file contains hidden or 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
| #!/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