显示空白网页的绘图破折号

时间:2019-07-28 15:15:31

标签: python plotly plotly-dash plotly-python

我是新来的破折号。当我尝试在Chrome或Firefox中连接http://127.0.0.1:8050/时,它显示空白网页。

我在chrome和firefox浏览器中都尝试过。我已按照本网站https://dash.plot.ly/installation

中所述的安装过程进行操作
pip install dash==1.0.2  # The core dash backend
pip install dash-daq==0.1.0  # DAQ components (newly open-sourced!)

我使用了这段代码。

# -*- coding: utf-8 -*-
import dash
import dash_core_components as dcc
import dash_html_components as html

external_stylesheets = ['https://codepen.io/chriddyp/pen/bWLwgP.css']

app = dash.Dash(__name__, external_stylesheets=external_stylesheets)

app.layout = html.Div(children=[
    html.H1(children='Hello Dash'),

    html.Div(children='''
        Dash: A web application framework for Python.
    '''),

    dcc.Graph(
        id='example-graph',
        figure={
            'data': [
                {'x': [1, 2, 3], 'y': [4, 1, 2], 'type': 'bar', 'name': 'SF'},
                {'x': [1, 2, 3], 'y': [2, 4, 5], 'type': 'bar', 'name': u'Montréal'},
            ],
            'layout': {
                'title': 'Dash Data Visualization'
            }
        }
    )
])

if __name__ == '__main__':
    app.run_server(debug=True)

空白网页

终端屏幕截图

空白网页

控制台

1 个答案:

答案 0 :(得分:0)

您可能已经知道了这一点,但是我之前看到过debug=True问题的出现。

我在Ubuntu 16.04机器上运行了您的示例,但是我改变了:

app.run_server(debug=True)

收件人:

app.run_server(debug=False)

,示例运行正常。 (我仅使用Mozilla进行过测试。)

您还可以运行指定端口和主机的Dash应用程序:

app.run_server(host='127.0.0.1',port=8700)

希望有帮助。