Skip to content

Instantly share code, notes, and snippets.

@grangerp
Forked from kennethreitz/install.sh
Created August 2, 2017 23:31
Show Gist options
  • Save grangerp/8ce0bfb588faf7c1dbf6b8a9f70989df to your computer and use it in GitHub Desktop.
Save grangerp/8ce0bfb588faf7c1dbf6b8a9f70989df to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
# Install Xcode Command Line Tools.
xcode-select --install
# Install Homebrew.
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Install brew basics (auto-updating).
brew install terminal-notifier
brew tap domt4/autoupdate
brew autoupdate --start --upgrade --cleanup --enable-notifications
# Install brew essentials.
brew install heroku
brew install git
brew install ack
# Install download utilities.
brew install youtube-dl
brew install wget
brew install httpie
# Install fancy shell stuff.
brew install fish
brew install grc
brew install direnv
brew install nnn
brew install thefuck
brew install autojump
brew install googler
brew install mas
# Install bash utilities.
brew install bats
brew install shellcheck
# Install Python utlitlies.
brew install python2
brew install python3
brew install pypy
brew install pypy3
brew install ipython
# Install pispi.
pip2 install pipsi
# Install pipenv.
pipsi install pew
pipsi install pipenv
# Install git utilities.
brew install git-open
brew install gist
pipsi install legit
# Make Python 3 system default.
rm -fr /usr/local/bin/python
ln -s /usr/local/bin/python3 /usr/local/bin/python
# Install Postgres (for psychopg2).
brew install postgres
# Install other languages.
brew install lua
brew install node
brew install ruby
# Install fun stuff.
brew install fortune
brew install cowsay
brew install sl
gem install lolcat
pipsi install em-keyboard
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment