PPT 是个强大的工具,但是笔者的 PPT 制作技术不咋地,所以之前的分享习惯使用 Jupyter Notebook + RISE,这样使用简单的 markdown 格式加上代码就足够做一次代码分享了。由于是纯文本格式的,我们可以放到 git 仓库里做版本控制。甚至你可以在网页里直接运行 python 代码。做好的分享还可以用 Jupyter 导出成 pdf、html等格式分享出去。

本文主要是讲如何使用 Jupyter Notebook + RISE 制作一个分享用的网页 PPT。

安装和使用比较简单,你可以使用 pip 或者其他工具安装。

pip install jupyter    # or python -m pip install jupyter 

pip install RISE    # https://github.com/damianavila/RISE
jupyter-nbextension install rise --py --sys-prefix
jupyter-nbextension enable rise --py --sys-prefix

jupyter notebook    # 切换到项目根目录下执行

 

相关文章:

  • 2021-08-11
  • 2021-10-05
  • 2021-08-30
  • 2021-10-06
  • 2021-11-28
  • 2022-12-23
  • 2021-10-17
  • 2021-10-06
猜你喜欢
  • 2021-08-22
  • 2021-05-20
  • 2021-11-25
  • 2022-01-10
  • 2022-12-23
  • 2021-11-11
  • 2021-07-30
相关资源
相似解决方案