我在Windows 8.1 64位上使用conda版本:4.0 python:3.4。
使用Ipython notebook 4.1。 %load_ext jupyter_cms
出错:
ImportError:没有名为'jupyter_cms'的模块
我检查了conda install jupyter_cms
anaconda元数据中没有包含此名称的包。
答案 0 :(得分:1)
访问此链接我相信您会得到答案:https://github.com/jupyter-incubator/contentmanagement
特别是'安装它':
在Jupyter Notebook 4.1和4.0中,您可以安装和激活扩展程序,如下所示:
pip install jupyter_cms
jupyter cms install --user --symlink --overwrite
jupyter cms activate
在任何一种情况下,如果笔记本服务器在启用/激活步骤中运行,则需要重新启动它。另请注意,您可以运行jupyter --paths来了解扩展文件的安装位置。
希望这有帮助。