jupyter notebook安装rise库无法显示按钮的解决方案

时间:2024-03-15 19:17:57

使用jupyter notebook实现ppt的效果
今天无意在知乎上看到jupyter notebook可以完成ppt的效果,有幸来学习一波。
安装的步骤

pip install RISE
jupyter-nbextension install rise --py --sys-prefix
jupyter-nbextension enable rise --py --sys-prefix

按照顺序安装在没有报错的情况下就说明rise库是安装完成了的。
但是在兴奋之余打开了jupyter 后并没有看到提及的按钮来完成ppt的分享,凉凉…


找问题
于是开始网上找解决答案,最后修改jupyter的默认浏览器就可行,把原来的IE浏览器更换成Google即可显示按钮。
修改步骤:
查看jupyter的安装位置:(cmd里面)jupyter notebook --generate-config
找到 jupyter_notebook_config.py
记事本打开进行修改
在# c.NotebookApp.browser = ‘’’’ 后加入下面语句块:
import webbrowser
webbrowser.register(“chrome”,None,webbrowser.GenericBrowser(u"C:\ProgramFiles(x86)\Google\Chrome\Application\chrome.exe"))
c.NotebookApp.browser = ‘chrome’
**注:**加粗的路径为谷歌浏览器的路径,自行调整
修改完默认浏览器后在把谷歌浏览器设置为默认浏览器,在此打开即可显示按钮了
jupyter notebook安装rise库无法显示按钮的解决方案

https://zhuanlan.zhihu.com/p/47418033
https://github.com/damianavila/RISE/issues/137
https://damianavila.github.io/RISE/installation.html