내용으로 건너뛰기
Out of the Box
사용자 도구
로그인
사이트 도구
검색
도구
문서 보기
이전 판
Fold/unfold all
역링크
최근 바뀜
미디어 관리자
사이트맵
로그인
>
최근 바뀜
미디어 관리자
사이트맵
추적:
•
pytest
jupyter
이 문서는 읽기 전용입니다. 원본을 볼 수는 있지만 바꿀 수는 없습니다. 문제가 있다고 생각하면 관리자에게 문의하세요.
====== Jupyter ====== ===== notebook 코드 감추기 & '코드 감추기' 버튼 추가 ===== * 문서의 제일 위에 추가 * http://protips.maxmasnick.com/hide-code-when-sharing-ipython-notebooks <code python> import IPython.core.display as di # This line will hide code by default when the notebook is exported as HTML di.display_html('<script>jQuery(function() {if (jQuery("body.notebook_app").length == 0) { jQuery(".input_area").toggle(); jQuery(".prompt").toggle();}});</script>', raw=True) # This line will add a button to toggle visibility of code blocks, for use with the HTML export version di.display_html('''<button onclick="jQuery('.input_area').toggle(); jQuery('.prompt').toggle();">Toggle code</button>''', raw=True) </code> ===== Dashboard ===== * https://github.com/jupyter-incubator/dashboards ===== Jupyter Lab ====== * jupyter latex: https://github.com/jupyterlab/jupyterlab-latex * drawio 확장 설치: https://blog.jupyter.org/a-diagram-editor-for-jupyterlab-a254121ff919 ===== Presentation using reveal.js ===== * https://github.com/damianavila/RISE ===== Tutorial ===== * [[https://medium.com/towards-artificial-intelligence/how-to-create-and-add-a-conda-environment-as-jupyter-kernel-c08ca4ee6815|How to Create and Add a Conda Environment as Jupyter Kernel?]] ===== Kernels ===== ==== C++ ==== <code bash> # cling conda install xeus-cling -c conda-forge </code> ==== RUST ==== <code bash> cargo install --locked evcxr_jupyter evcxr_jupyter --install </code> ==== Julia ===== <code julia> using Pkg Pkg.add("IJulia") </code> ===== terminal ===== * nbterm * https://blog.jupyter.org/nbterm-jupyter-notebooks-in-the-terminal-6a2b55d08b70 {{tag>jupyter notebook}}
jupyter.txt
· 마지막으로 수정됨: 2025/02/10 02:08 저자
rex8312
문서 도구
문서 보기
이전 판
역링크
Fold/unfold all
맨 위로