(파이썬) jupyter notebook 내용 pdf 저장
[ 제 네이버 블로그 글을 티스토리로 이전한 글입니다. 해당 글은 제 네이버 블로그에 2017.12.11에 작성되었었습니다 ]
요즘 jupyter notebook을 많이 사용하는 것 같습니다.
jupyter notebook의 내용을 간단하게 다른 양식으로 변환 저장하는 library가 있어서 (잊지않기위해) 적습니다.
nbconvert
https://github.com/jupyter/nbconvert
jupyter notebook의 내용을 HTML, LaTeX, PDF, Reveal JS 등으로 변환 저장할 수 있게해주는 tool입니다.
설치 방법
1) sudo apt-get install pandoc
(제 local pc의 경우, 위의 방법으로 정상적으로 설치가 되지않았습니다.
그래서, 직접 파일을 다운받아서 설치했습니다.)
* 파일 받아서 설치할 경우... {sudo dpkg -i 파일위치} 로 설치.
https://pandoc.org/installing.html
2) nbconvert 설치
git clone https://github.com/jupyter/nbconvert.git
cd nbconvert
pip install -e .
3) 설치 test
pip install nbconvert[test]
py.test --pyargs nbconvert
3)과정에서 에러가 없으면 nbconvert library가 제대로 설치된 것입니다.
사용 예)
@:~/Downloads$ jupyter nbconvert --to pdf jupyter 파일 path