setup: | |
python -m venv .venv && \ | |
. .venv/bin/activate && \ | |
pip install -r requirements.txt | |
build_html: | |
python -m venv .venv && \ | |
jupyter nbconvert --execute notebook.ipynb --to notebook --inplace --ExecutePreprocessor.timeout=-1 && \ | |
jupyter nbconvert --to html --output index --template classic notebook.ipynb | |
run: | |
. .venv/bin/activate && jupyter notebook |