将 Dash 部署到 Google App Engine python3 运行时的问题

将 Dash 部署到 Google App Engine python3 运行时的问题

我正在尝试使用 Python 3 灵活运行时将一个非常基本的 Dash 应用程序部署到 GAE,但部署总是失败:“错误:(gcloud.app.deploy)错误响应:[13] 部署期间发生内部错误”。我的应用程序在本地运行良好,我怀疑问题与 GAE 的 python3 运行时和 Dash 的依赖项有关

我的app.yaml文件如下:

env: flex
entrypoint: gunicorn -b :$PORT main:app

runtime_config:
  python_version: 3

manual_scaling:
  instances: 1
resources:
  cpu: 1
  memory_gb: 1
  disk_size_gb: 10

我尝试将 memory_gb 增加到 5,但仍然出现错误。

我的main.py文件如下:

import dash
import dash_html_components as html
import dash_core_components as dcc
import plotly.graph_objs as go
from dash.dependencies import Input, Output, State, Event
from flask import Flask

# Initialize dash app
server = Flask(__name__)
app = dash.Dash(__name__, server = server)
app.config['suppress_callback_exceptions'] = True
app.css.config.serve_locally = True
app.scripts.config.serve_locally = True
s
app.layout = html.Div([
    dcc.Input(id='my-id', value='initial value', type='text'),
    html.Div(id='my-div'),
    dcc.Graph(id = 'go')
])

@app.callback(
    Output(component_id='my-div', component_property='children'),
    [Input(component_id='my-id', component_property='value')]
)
def update_output_div(input_value):
    return 'You\'ve entered "{}"'.format(input_value)


if __name__ == '__main__':

    app.run_server(debug = True)

我也尝试过指定:

app.run_server(debug = True, port = 8080)

我的 requirements.txt 文件如下:

dash==0.30.0
dash-core-components==0.38.1
dash-html-components==0.13.2
dash-renderer==0.15.1
Flask==1.0.2
Flask-Compress==1.4.0
gunicorn==19.9.0
plotly==3.4.2

这是尽可能基本的部署(尝试查看导致部署失败的原因)。Dash 的依赖项和 GAE python3 运行时是否存在已知问题?我应该只使用 python2 吗?

谢谢!

相关内容