Fix #240: Update notebook installation (#241)

This commit is contained in:
Donne Martin
2018-08-21 21:59:24 -04:00
committed by GitHub
parent b92cd87a16
commit 95d0d26a2c
2 changed files with 3 additions and 47 deletions

View File

@@ -444,25 +444,12 @@ interactive-coding-challenges # Repo
## Notebook Installation
### IPython Notebook
### Jupyter Notebook
If you already have Python installed and are familiar with installing packages, you can get IPython Notebook with pip:
Run:
```
pip install "ipython[notebook]"
```
If you run into an issue about pyzmq, refer to the following [Stack Overflow post](http://stackoverflow.com/questions/24995438/pyzmq-missing-when-running-ipython-notebook) and run:
```
pip uninstall ipython
pip install "ipython[all]"
```
As an alternative, you can also use the provided ```requirements.txt``` file:
```
pip install -r requirements.txt
pip install jupyter
```
For detailed instructions, scripts, and tools to more optimally set up your development environment, check out the [dev-setup](https://github.com/donnemartin/dev-setup) repo.