Skip to content

Instantly share code, notes, and snippets.

@Yeshwanthyk
Created November 14, 2013 04:12
Show Gist options
  • Save Yeshwanthyk/7461229 to your computer and use it in GitHub Desktop.
Save Yeshwanthyk/7461229 to your computer and use it in GitHub Desktop.
#!/bin/sh
# All the things I can install from the command line when I set up a new Mac
# This can be executed by copying and pasting the following at a shell prompt
# curl https://raw.github.com/gist/2993226/initial_setup.sh | sh
# Install Homebrew
ruby -e "$(curl -fsSkL raw.github.com/mxcl/homebrew/go)"
# Tap Homebrew versions (needed for older versions of Python)
brew tap homebrew/versions
# Homebrew packages
brew install python25 python26 python python32 python3 pypy
brew install git hub imagemagick legit memcached mercurial mongodb node postgresql readline rhino ruby sqlite vim wget
# spell check
brew install aspell --with-lang-en
# Initialize Python
# This is done here because I'm using Python from Homebrew
easy_install pip readline
pip install bpython fabric ipython sphinx virtualenv virtualenvwrapper
ipython profile create
# Homebrew Services
gem install lunchy
# Install Heroku Toolbelt
curl https://toolbelt.heroku.com/install.sh | sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment