Skip to content

Instantly share code, notes, and snippets.

@sb2nov
Created July 21, 2013 01:34
Show Gist options
  • Save sb2nov/6047135 to your computer and use it in GitHub Desktop.
Save sb2nov/6047135 to your computer and use it in GitHub Desktop.
Mac Ins
#
# (c) 2011, 2012 Georgia Tech Research Corporation
# This source code is released under the New BSD license. Please see
# http://wiki.quantsoftware.org/index.php?title=QSTK_License
# for license details.
# Created on Jan 16, 2013
# @author: Sourabh Bajaj
# @contact: sourabhbajaj90@gmail.com
# @summary: Automated Mac Installation script of QSTK
#
echo "Install Homebrew"
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"
echo 'export PATH="/usr/local/bin:$PATH"' >> ~/.bash_profile
brew doctor
echo "Install QSTK"
curl -L https://raw.github.com/tucker777/QuantSoftwareToolkit/master/MacInstallation.sh | bash
echo "Test QSTK"
cd ~/QSTK
curl -O https://spark-public.s3.amazonaws.com/compinvesting1/QSTK-Setups/Examples.zip
unzip Examples.zip
python Validation.py
python Basic/tutorial1.py
echo "Deactivating"
deactivate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment