From 3be7ab6d5a82ad89b0815849310b8729f56622d5 Mon Sep 17 00:00:00 2001 From: Donne Martin Date: Tue, 16 Jun 2015 06:27:04 -0400 Subject: [PATCH] Updated Notebook Installation section. --- README.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7df73f0..8146070 100644 --- a/README.md +++ b/README.md @@ -97,11 +97,21 @@ Most solutions are in Python. ## 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. +If you already have Python installed and are familiar with installing packages, you can get IPython with pip: -Follow instructions to install [Anaconda](http://docs.continuum.io/anaconda/install.html) or the more lightweight [miniconda](http://conda.pydata.org/miniconda.html). +``` +pip install ipython +``` -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) +Or if you want to also get the dependencies for the IPython notebook: + +``` +pip install "ipython[notebook]" +``` + +For more details on installation, follow the directions [here](http://ipython.org/install.html) + +To interact with 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