diff --git a/README.md b/README.md index 148e929..e694c8c 100644 --- a/README.md +++ b/README.md @@ -342,18 +342,19 @@ Unit tests are provided in the form of **Nose tests**. ## Notebook Installation -If you already have Python installed and are familiar with installing packages, you can get IPython with pip: - -``` -pip install ipython -``` - -Install the dependencies for the IPython Notebook: +If you already have Python installed and are familiar with installing packages, you can get IPython Notebook with pip: ``` pip install "ipython[notebook]" ``` +If you run into an issue about pyzmq, refer to the followwing [Stack Overflow post](http://stackoverflow.com/questions/24995438/pyzmq-missing-when-running-ipython-notebook) and run: + +``` +pip uninstall ipython +pip install "ipython[all]" +``` + For more details on installation, follow the directions [here](http://ipython.org/install.html). More information on IPython/Jupyter Notebooks can be found [here](http://ipython.org/notebook.html).