参考:这里
pip install https://github.com/mli/notedown/tarball/master
jupyter notebook --NotebookApp.contents_manager_class='notedown.NotedownContentsManager'
第一句是安装notedown。
第二句是以notedown打开。
如果想要默认安装notedown打开,则还要:
jupyter notebook --generate-config
这是先生成配置文件,然后在配置文件最后加上:
c.NotebookApp.contents_manager_class = 'notedown.NotedownContentsManager'
这样,以后只需要输入jupyter notebook就行了。