hello my problem is
i don’t see any plot in page just loading… and no graphs is shown!
my python version is :Anaconda 3 Python 3.6.4
my server :centos7 with no internet access
steps
first i installed dash all sources and python setup.py install all of them
install dash==0.22.0 # The core #dash dash backend
install dash-renderer==0.13.0 # The #dash dash front-end
install dash-html-components==0.11.0 # HTML components
install dash-core-components==0.26.0 # Supercharged components
install plotly the latest version
then i take the code from dash examples
import dash
import dash_core_components as dcc
import dash_html_components as html
app = dash.Dash()
# Force offline usage (also fails to render graph, issue #46)
app.css.config.serve_locally = True
app.scripts.config.serve_locally = True
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,host = '0.0.0.0',port=5001)
then i retry to do assets folder and put
custom-script.js header.css typography.css
put still not show anything just loading…
i try to open page with many browser like chrome and Firefox and internet exp but still show loading…
[link for this Issue IN stackOverflow]
how can i resolve this issue