Fixed #10, added to install instructions for users facing pyzmq issues.

This commit is contained in:
Donne Martin 2015-07-10 08:58:59 -04:00
parent b651eeb86a
commit 3f9e49c028

View File

@ -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).