Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 725 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 725 Bytes

Nessie Demos - Jupyter notebooks

Remember that some public Jupyter notebook runtime environments (Google Colaboratory) cannot access other files next to the notebook, only the notebook itself.

Running locally with a "standalone Jupyter"

To run a demo locally with a "standalone Jupyter", you need a fresh "venv":

[ ! -d venv ] && virtualenv -p $(which python3) venv
. venv/bin/activate
pip install --upgrade pip
pip install -r pydemolib/requirements.txt
pip install jupyterlab

Running in Pycharm

You can use the same venv as mentioned above, actually. Pycharm should "just work".

Unit tests

Tests for all notebooks are in notebook-tests to keep this directory mostly clean.