我已经安装了扩展程序'calico-document-tools'
,我可以使用以下命令从Jupyter笔记本中加载它:
%%javascript
IPython.load_extensions('calico-document-tools');
如何为每个打开的笔记本自动加载它?
我尝试将IPython.load_extensions('calico-document-tools');
或IPython.load_extensions('C:/Users/<username>/.ipython/nbextensions/calico-document-tools');
添加到C:\Users\<username>\.ipython\profile_default\static\custom\custom.js
,但它无法正常工作(扩展程序应在工具栏上显示多个按钮)。
我只有一个配置文件,使用ipython profile create
,Python 3.3,Windows 7创建。提前感谢。
答案 0 :(得分:8)
要安装扩展程序,我按照this notebook中的说明操作(不再提供)。
我调整了一点以与ipython4兼容(其中笔记本服务器称为jupyter)。此命令全局安装扩展:
$ jupyter nbextension install https://github.com/Calysto/notebook-extensions/archive/master.zip
然后启用此扩展程序:
$ jupyter nbextension enable calico-document-tools
现在打开或重新加载笔记本时,应加载扩展程序
更新配置以启用扩展也可以在笔记本内部完成:
%%javascript
IPython.notebook.config.update({
"load_extensions": {"calico-spell-check":true,
"calico-document-tools":true,
"calico-cell-tools":true
}
})