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

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

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

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

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

c.NotebookApp.disable_check_xsrf = True

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

你可能感兴趣的:(编辑器,python)