jupyter notebook 打开md文件

让jupyter notebook 生成md这个大家都会,可是在github当中有很多很好的md文件,如果不能在jupyter notebook当中打开体验,实在是太让人难过了。
在网上搜索了一下,有很多人也有同样的需求,也不是很清楚怎么操作,现在我将自己的体验分享给大家。
首先

  • 1.进入环境之后,安装notedown
    进入环境就是激活环境:source activate XXX
    pip install https://github.com/aaren/notedown/tarball/master
    个人觉得使用pip install notedown 也应该可以

  • 2.打开文件(没有就新建)
    sudo gedit ~/.jupyter/jupyter_notebook_config.py

  • 3.增加以下内容,存盘
    c.NotebookApp.contents_manager_class = ‘notedown.NotedownContentsManager’

重启jupyter notebook 服务
在浏览器当中选择.md文件ok!

你可能感兴趣的:(编程相关,md文件,jupyter,notebook)