1# pip install jupyter-book 2# pip install ghp-import 3 4# Build the Jupyter book version 5 6# copy the chapter notebooks 7cp ../ModSimPySolutions/chapters/chap*.ipynb . 8 9# add tags to hide the solutions 10python prep_notebooks.py 11 12# build the HTML version 13jb build . 14 15# push it to GitHub 16ghp-import -n -p -f _build/html 17 18