-
Notifications
You must be signed in to change notification settings - Fork 13
jupyter book 작성 방법
Heeseon Cheon edited this page Jun 4, 2023
·
12 revisions
-
pip install jupyter-book
(https://jupyterbook.org/en/stable/intro.html) -
pip install ghp-import
(https://pypi.org/project/ghp-import) -
pip install urllib3==1.26.6
(선택 - jupyter-book 명령어 실행 시 urllib 관련 오류 발생할 경우 설치하시면 됩니다!) - repo Settings 설정
-
_config.yml
에서 수정 가능- title : gitbook 제목 (왼쪽 상단 로고 하단)
- repository - url : 해당 repo url
-
book/docs/
에.md
또는.ipynb
파일 추가 -
_toc.yml
에서 목차 수정- file: 파일명
-
jupyter-book build book
실행 -
cd book/_build/html; python -m http.server
실행 후 localhost:8000 으로 로컬 내에서 확인 - git add - commit - push 진행
-
ghp-import -npf book/_build/html -m "[commit 메시지]"
: gh-pages 브랜치에 자동 commit됨
참고 repo