Skip to content

Commit a954389

Browse files
committed
finished tutorial & dev docs
1 parent 9d8936e commit a954389

File tree

3 files changed

+6708
-297
lines changed

3 files changed

+6708
-297
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,6 @@ node_modules/
3030

3131
# docs
3232
docs/iJO1366.json
33-
docs/e_coli_core.json
33+
docs/e_coli_core.json
34+
docs/iAB_RBC_283.json
35+
docs/example_map.html

README.md

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -89,28 +89,27 @@ pip install escher
8989

9090
## Jupyter extensions
9191

92-
To install the Jupyter lab extension, simply install Escher with pip then
93-
install the extension:
94-
95-
```bash
96-
pip install escher
97-
jupyter labextension install @jupyter-widgets/jupyterlab-manager
98-
jupyter labextension install escher
99-
```
100-
101-
To install the Jupyter notebook extension, run the following:
92+
When you `pip install escher`, the Jupyter notebook extension should be
93+
installed automatically. If that doesn't work, try:
10294

10395
```bash
104-
pip install escher
105-
# you'll need version >=5 of the `notebook` package
96+
# The notebook extenstion should install automatically. You can check by running:
97+
jupyter nbextension list
98+
# Make sure you have version >=5 of the `notebook` package
10699
pip install "notebook>=5"
100+
# To manually install the extension
107101
jupyter nbextension install --py escher
108102
jupyter nbextension enable --py escher
103+
# depending on you environment, you might need the `--sysprefix` flag with those commands
109104
```
110105

111-
Note: depending on you environment, you might want to add the `--sysprefix` flag
112-
to the nbextension commands. You might also need to use `sudo` to get around
113-
permissions issues.
106+
To install the Jupyter lab extension, simply install Escher with `pip install escher` then
107+
install the extension:
108+
109+
```bash
110+
jupyter labextension install @jupyter-widgets/jupyterlab-manager
111+
jupyter labextension install escher
112+
```
114113

115114
## Python/Jupyter Development
116115

0 commit comments

Comments
 (0)