mirror of
https://github.com/donnemartin/interactive-coding-challenges.git
synced 2024-03-22 13:11:13 +08:00
Fixed #10, added to install instructions for users facing pyzmq issues.
This commit is contained in:
parent
b651eeb86a
commit
3f9e49c028
15
README.md
15
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).
|
||||
|
|
Loading…
Reference in New Issue
Block a user