Я хочу увидеть работающий Jupyter (http://localhost:8888) во Flask (http://127.0.0.1:5000).
). Я в основном следую по этой ссылке. Визуализация Iframe Jupyter Notebook во Flask
Но эти сообщения об ошибках в журналах консоли Chrome. И ничего не отображается, только белый экран.
Refused to display 'http://localhost:8888/lab?' in a frame because an ancestor violates the following Content Security Policy directive: "frame-ancestors 'http://127.0.0.1:5000/' 'self'".
Как управлять Jupyter Lab через приложение Flask?
Мои коды
main.py
@app.route("/")
def jupyter():
src = "http://localhost:8888/lab?"
return render_template("iframe.html", iframe=src)
iframe.html
<iframe frameborder='0' noresize='noresize' sandbox="allow-same-origin allow-popups allow-scripts" style='position: absolute; background: transparent; width: 100%; height:100%;' src="{{ iframe }}" frameborder="0"></iframe>
jupyter_notebook_config.py
c.NotebookApp.allow_origin = '*' #Basic permission
c.NotebookApp.disable_check_xsrf = True #Otherwise Jupyter restricts you modifying the Iframed Notebook
c.NotebookApp.token = '' #In my case I didn't want to deal with security
c.NotebookApp.trust_xheaders = True #May or may not make a difference to you
c.NotebookApp.tornado_settings = {
'headers': {
'Content-Security-Policy': "frame-ancestors 'self' http://127.0.0.1:5000/ http://127.0.0.1:5000/*",
}
}