From 48e5ad99184c1b8a32dfe5e19e99a1558fb5dcf0 Mon Sep 17 00:00:00 2001 From: Donne Martin Date: Sun, 14 Jun 2015 07:10:35 -0400 Subject: [PATCH] Added notebook-installation section. --- README.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index aaaa75d..f51ad31 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,8 @@ Most solutions are in Python. * [Scalability and Memory Limits](#scalability-and-memory-limits) * [Concurrency](#concurrency) * [Hacker Rank and TopCoder](#hacker-rank-and-topcoder) -* [Credits](#credits) +* [notebook-installation](#notebook-installation) +* [credits](#credits) * [License](#license) ## Arrays and Strings @@ -91,6 +92,20 @@ Most solutions are in Python. * [Utopian Tree](http://nbviewer.ipython.org/github/donnemartin/algorithms-data-structures/blob/master/hacker-rank/utopian-tree.ipynb) * [Maximizing XOR](http://nbviewer.ipython.org/github/donnemartin/algorithms-data-structures/blob/master/hacker-rank/maximizing-xor.ipynb) +## notebook-installation + +Anaconda is a free distribution of the Python programming language for large-scale data processing, predictive analytics, and scientific computing that aims to simplify package management and deployment. + +Follow instructions to install [Anaconda](http://docs.continuum.io/anaconda/install.html) or the more lightweight [miniconda](http://conda.pydata.org/miniconda.html). + +To view interactive content or to modify elements within the IPython notebooks, you must first clone or download the repository then run the ipython notebook. More information on IPython Notebooks can be found [here.](http://ipython.org/notebook.html) + +``` +$ git clone https://github.com/donnemartin/data-science-ipython-notebooks.git +$ cd [downloaded repo directory name] +$ ipython notebook +``` + ## Credits * [Cracking the Coding Interview](http://www.amazon.com/Cracking-Coding-Interview-Programming-Questions/dp/098478280X)