Skip to content

Commit

Permalink
Add homebrew and python installer
Browse files Browse the repository at this point in the history
  • Loading branch information
jtratner committed Jun 12, 2019
1 parent 3820324 commit 389e51a
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
13 changes: 13 additions & 0 deletions homebrew/install_stuff.sh
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

13 changes: 13 additions & 0 deletions python/install_system_pythons.sh
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

0 comments on commit 389e51a

Please sign in to comment.