====== Jupyter ======
===== notebook 코드 감추기 & '코드 감추기' 버튼 추가 =====
* 문서의 제일 위에 추가
* http://protips.maxmasnick.com/hide-code-when-sharing-ipython-notebooks
import IPython.core.display as di
# This line will hide code by default when the notebook is exported as HTML
di.display_html('', raw=True)
# This line will add a button to toggle visibility of code blocks, for use with the HTML export version
di.display_html('''''', raw=True)
===== 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++ ====
# cling
conda install xeus-cling -c conda-forge
==== RUST ====
cargo install --locked evcxr_jupyter
evcxr_jupyter --install
==== Julia =====
using Pkg
Pkg.add("IJulia")
===== terminal =====
* nbterm
* https://blog.jupyter.org/nbterm-jupyter-notebooks-in-the-terminal-6a2b55d08b70
{{tag>jupyter notebook}}