Skip to content

Commit 89af4ee

Browse files
committed
Update README for Python 3 support
1 parent 29ab1e1 commit 89af4ee

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ Nodebook is a plugin for Jupyter Notebook designed to enforce an ordered flow of
1010
Nodebook is available on pypi and can be installed with pip. Additionally, the jupyter extension must be registered:
1111
```
1212
pip install nodebook
13-
upyter nbextension install --py nodebook
13+
jupyter nbextension install --py nodebook
1414
```
1515

1616
## Usage
1717

1818
To use Nodebook, add the following lines to a cell in your Jupyter notebook:
1919
```
2020
#pragma nodebook off
21-
%load_ext nodebookext
21+
%load_ext nodebook.ipython
2222
%nodebook {mode} {name}
2323
```
2424
Where `{mode}` is one of `memory` or `disk`, and `{name}` is a unique identifier for your notebook.
@@ -31,9 +31,9 @@ For additional example usage, see [nodebook_demo.ipynb](./nodebook_demo.ipynb).
3131

3232
## FAQ
3333

34-
#### Q: Does Nodebook support Python 2?
34+
#### Q: Should I use Python 2 or Python 3 with Nodebook?
3535

36-
Yes, but we recommend using Python 3.
36+
There has been an [increasing consensus](http://www.python3statement.org/) toward sunsetting support for Python 2, including in Project Jupyter. Nodebook currently supports both Python 2 and Python 3, but Python 3 is preferred.
3737

3838
#### Q: Why am I seeing "ERROR:root:Cell magic `%%execute_cell` not found."?
3939

0 commit comments

Comments
 (0)