美文网首页
Jupyter notebook转化为html文件,生成自动化报

Jupyter notebook转化为html文件,生成自动化报

作者: Kevin_Hhui | 来源:发表于2022-02-24 23:03 被阅读0次

平时看结果,我们更倾向于html格式,因此就想写一篇blog,介绍下如何将ipynb文件转为html文件。

需要安装一些必要的库 (这里默认你安装了jupyter notebook了)

python -m pip install --user jupyter_contrib_nbextensions
jupyter contrib nbextension install --user --skip-running-check
python -m pip install --user jupyter_nbextensions_configurator
jupyter nbextensions_configurator enable --user

接着我们就可以直接根据一条命令转换格式文件啦

jupyter nbconvert --to html /data/xxx/scVelo/scVelo.ipynb # 不隐藏代码块内容

jupyter nbconvert --to html --no-input /data/xxx/scVelo/scVelo.ipynb  # 隐藏代码块内容

效果展示

demo

相关文章

网友评论

      本文标题:Jupyter notebook转化为html文件,生成自动化报

      本文链接:https://www.haomeiwen.com/subject/qditrrtx.html