Setup

Required software to run these tests yourself

Primary software

Python libraries

I am not saying older versions won't work, but these are what I used

In [15]:
print "Run This to see your config"
import IPython
print "ipython version %s" % IPython.__version__
import numpy
print "numpy version %s" % numpy.__version__
import scipy
print "scipy version %s" % scipy.__version__
import pandas
print "pandas version %s" % pandas.__version__
import sklearn
print "scikit-learn %s" % sklearn.__version__
import statsmodels
print "statsmodels %s" % statsmodels.__version__
import matplotlib
print "matplotlib %s" % matplotlib.__version__
import brewer2mpl
print "brewer2mpl %s" % brewer2mpl.__version__
Run This to see your config
ipython version 1.1.0
numpy version 1.8.0
scipy version 0.13.3
pandas version 0.13.1
scikit-learn 0.14.1
statsmodels 0.5.0
matplotlib 1.3.1
brewer2mpl 1.4.dev

mathjax, install like below

from IPython.external.mathjax import install_mathjax
install_mathjax()
In []: