-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
set -o nounset | ||
set -e | ||
set -x | ||
brew -h || (echo "Installing homebrew" && /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)") | ||
# Javascript manipulation - important! | ||
brew install jq | ||
brew install fx | ||
brew install parallel | ||
brew install gprof2dot | ||
# ag - etc | ||
brew install the_silver_searcher | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
# I use pyenv by default because it's *way* easier to manage than homebrew and | ||
# makes it much easier to juggle multiple versions of python without killing | ||
# your whole install. | ||
set -o nounset | ||
set -e | ||
set -x | ||
brew install pyenv | ||
pyenv install 3.6.4 | ||
pyenv install 3.7.2 | ||
# 😭 sigh... | ||
pyenv install 2.7.12 | ||
pyenv global 3.6.4 |