File size: 366 Bytes
fb66491
 
 
 
 
 
efa7ace
 
 
cf119b0
 
efa7ace
1
2
3
4
5
6
7
8
9
10
11
12
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