日々精進

新しく学んだことを書き留めていきます

Jupyter Notebookで「'_xsrf' argument missing from POST」エラー

xsrf大作のTokenがないとエラーメッセージが出るが、それを抑止したい場合、以下の設定をすればよい。

jupyter_notebook_config.py

c.NotebookApp.disable_check_xsrf = True

参考:

github.com