Skip to content

Commit

Permalink
finished tutorial & dev docs
Browse files Browse the repository at this point in the history
  • Loading branch information
zakandrewking committed Jul 11, 2019
1 parent 9d8936e commit a954389
Show file tree
Hide file tree
Showing 3 changed files with 6,708 additions and 297 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,6 @@ node_modules/

# docs
docs/iJO1366.json
docs/e_coli_core.json
docs/e_coli_core.json
docs/iAB_RBC_283.json
docs/example_map.html
29 changes: 14 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,28 +89,27 @@ pip install escher

## Jupyter extensions

To install the Jupyter lab extension, simply install Escher with pip then
install the extension:

```bash
pip install escher
jupyter labextension install @jupyter-widgets/jupyterlab-manager
jupyter labextension install escher
```

To install the Jupyter notebook extension, run the following:
When you `pip install escher`, the Jupyter notebook extension should be
installed automatically. If that doesn't work, try:

```bash
pip install escher
# you'll need version >=5 of the `notebook` package
# The notebook extenstion should install automatically. You can check by running:
jupyter nbextension list
# Make sure you have version >=5 of the `notebook` package
pip install "notebook>=5"
# To manually install the extension
jupyter nbextension install --py escher
jupyter nbextension enable --py escher
# depending on you environment, you might need the `--sysprefix` flag with those commands
```

Note: depending on you environment, you might want to add the `--sysprefix` flag
to the nbextension commands. You might also need to use `sudo` to get around
permissions issues.
To install the Jupyter lab extension, simply install Escher with `pip install escher` then
install the extension:

```bash
jupyter labextension install @jupyter-widgets/jupyterlab-manager
jupyter labextension install escher
```

## Python/Jupyter Development

Expand Down
Loading

0 comments on commit a954389

Please sign in to comment.