Skip to content

Instantly share code, notes, and snippets.

View vheaffinitech's full-sized avatar

Vincent Heuschling vheaffinitech

View GitHub Profile
@kmichel
kmichel / install_google_cloud.sh
Created February 26, 2013 06:56
OSX setup script for Google Cloud for Data Crunchers tutorial at StrataConf
#!/usr/bin/env bash
set -e
echo '****** Installing BigQuery ******'
sudo easy_install bigquery
echo '****** Installing gcutil ******'
curl https://google-compute-engine-tools.googlecode.com/files/gcutil-1.7.1.tar.gz | tar xvzpf -
echo "export PATH=\${PATH}:${PWD}/gcutil-1.7.1" >> ~/.bash_profile
source ~/.bash_profile
gcutil help
echo '****** Installing gsutil ******'