Skip to content

Deploying to Github pages with ghp-import

Example directory structure

myproject/
├── myproject/
├── jupyterbook/
├── README.md
├── requirements.txt
├── build.bat

Building with ghp-import

The build.bat file can then be used to run:

jupyter-book build jupyterbook
cd jupyterbook
ghp-import -n -p -f _build/html
cd ..

References