使用“重新启动并全部运行”时未应用Jupyter笔记本custom.js

时间:2018-10-21 15:42:15

标签: python jupyter-notebook customization

为了获得正在运行的Jupyter笔记本的名称,我首先在〜/ .jupyter / custom / custom.js中添加了以下行

// Create a nb_name variable with the name of the notebook
IPython.notebook.kernel.execute('nb_name = "' + IPython.notebook.notebook_name + '"');

然后,当我使用以下命令运行单元格时,在笔记本上

print(nb_name)

我得到:

NameError                                 Traceback (most recent call last)
<ipython-input-1-7e37f787d8df> in <module>()
----> 1 print(nb_name)

NameError: name 'nb_name' is not defined

要解决此问题,我需要在第一行添加一个警报命令:

alert("hello world from custom.js")

// Create a nb_name variable with the name of the notebook
IPython.notebook.kernel.execute('nb_name = "' + IPython.notebook.notebook_name + '"');

然后,当我加载笔记本时,将显示一个警报窗口,一旦关闭它,我将按预期获得笔记本的名称。

我如何在没有用户任何操作的情况下使它工作(我正在使用笔记本电脑版本5.0.0,并且由于我不是服务器的管理员,所以无法更新它)?

编辑:

Waiting for kernel to be ready when executing code via Jupyter kernel (Jupyter Notebook extension)中的问题部分解决了该问题。 Custom.js文件包含:

Jupyter.notebook.events.one('kernel_ready.Kernel', () => {
     // Create a nb_name variable with the name of the notebook
     IPython.notebook.kernel.execute('nb_name = "' + IPython.notebook.notebook_name + '"');
});

按预期方式返回笔记本名称。现在的问题是,当我“重新启动并全部运行”时,仍然收到上面提到的错误消息。任何意见或想法都将受到欢迎。

1 个答案:

答案 0 :(得分:0)

custom.js kernel_ready.Kernel事件仅在页面加载时触发一次,但不会在Restart & Run all(或其任何变体)之后触发。对于这个问题,我的解决方案有点hackie:

/**
 * `kernel_ready` logic
 */
function custom_kernel_ready_handler() {
    IPython.notebook.kernel.execute('nb_name = "' + IPython.notebook.notebook_name + '"');
}

function handle_kernel_ready() {
    // Create a nb_name variable with the name of the notebook
     console.log('kernel_ready.Kernel: handle_kernel_ready() was triggered!');
     custom_kernel_ready_handler();

     Jupyter.notebook.events.one('kernel_ready.Kernel', () => {
         //this recursive behavior is esential for `restart` kernel
         handle_kernel_ready();
    });
}

Jupyter.notebook.events.one('kernel_ready.Kernel', () => {
     handle_kernel_ready();
});

希望有更好的解决方案...