欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【jupyter notebook】启动内核失败 ‘_xsrf‘ argument missing from POST

程序员文章站 2022-05-29 09:33:57
...

启动内核失败 ‘_xsrf’ argument missing from POST

使用 Jupyter notebook 笔记莫名其妙就出错了,不能运行。

好像是笔记来源不受信任导致的。
气死我了,找了好久解决方案。

jupyter_notebook_config.py配置文件中找到#c.NotebookApp.disable_check_xsrf = False这行,改为:

c.NotebookApp.disable_check_xsrf = True

禁止受信任的检测,就好了

相关标签: 编辑器 python