You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,17 +7,18 @@ Nodebook is a plugin for Jupyter Notebook designed to enforce an ordered flow of
7
7
8
8
## Installation
9
9
10
-
Nodebook is available on pypi and can be installed with pip:
10
+
Nodebook is available on pypi and can be installed with pip. Additionally, the jupyter extension must be registered:
11
11
```
12
12
pip install nodebook
13
+
jupyter nbextension install --py nodebook
13
14
```
14
15
15
16
## Usage
16
17
17
18
To use Nodebook, add the following lines to a cell in your Jupyter notebook:
18
19
```
19
20
#pragma nodebook off
20
-
%load_ext nodebookext
21
+
%load_ext nodebook.ipython
21
22
%nodebook {mode} {name}
22
23
```
23
24
Where `{mode}` is one of `memory` or `disk`, and `{name}` is a unique identifier for your notebook.
@@ -30,9 +31,9 @@ For additional example usage, see [nodebook_demo.ipynb](./nodebook_demo.ipynb).
30
31
31
32
## FAQ
32
33
33
-
#### Q: Does Nodebook support Python 3?
34
+
#### Q: Should I use Python 2 or Python 3 with Nodebook?
34
35
35
-
Unfortunately, not yet. Please try it in Python 2.7.
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.
36
37
37
38
#### Q: Why am I seeing "ERROR:root:Cell magic `%%execute_cell` not found."?
0 commit comments