상세 컨텐츠

본문 제목

(파이썬) jupyter notebook 내용 pdf 저장

Developer

by South Korea life 2021. 8. 6. 08:44

본문

728x90
반응형

[ 제 네이버 블로그 글을 티스토리로 이전한 글입니다. 해당 글은 제 네이버 블로그에 2017.12.11에 작성되었었습니다 ]

 

요즘 jupyter notebook을 많이 사용하는 것 같습니다.
jupyter notebook의 내용을 간단하게 다른 양식으로 변환 저장하는 library가 있어서 (잊지않기위해) 적습니다.

 

nbconvert 

https://github.com/jupyter/nbconvert

 

GitHub - jupyter/nbconvert: Jupyter Notebook Conversion

Jupyter Notebook Conversion. Contribute to jupyter/nbconvert development by creating an account on GitHub.

github.com

 

jupyter notebook의 내용을 HTML, LaTeX, PDF, Reveal JS 등으로 변환 저장할 수 있게해주는 tool입니다.

설치 방법
 1) sudo apt-get install pandoc 
    (제 local pc의 경우, 위의 방법으로 정상적으로 설치가 되지않았습니다.
     그래서, 직접 파일을 다운받아서 설치했습니다.)
     * 파일 받아서 설치할 경우... {sudo dpkg -i 파일위치} 로 설치.

  https://pandoc.org/installing.html

 

Pandoc - Installing pandoc

Installing pandoc The simplest way to get the latest pandoc release is to use the installer. Download the latest installer For alternative ways to install pandoc, see below under the heading for your operating system. Windows There is a package installer a

pandoc.org

 

 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

728x90
반응형

관련글 더보기

댓글 영역