Hi all, I'm trying to develop a web page using boostrap components in PythonAnywhere (with python3.6, Dash and Flask), using the following simple example.
import dash import dash_bootstrap_components as dbc app = dash.Dash( external_stylesheets=[dbc.themes.BOOTSTRAP] ) app.layout = dbc.Alert( "Hello, Bootstrap!" className="m-5" )
I have loaded all necessary modules (plotly, dash, dash_bootstrap_components) and the script runs under the bash console, but I keep getting a "Something went wrong :-(" error when trying to compile it into a web page. Any ideas what I'm missing? I have, in the past, successfully turn into a webpage code which didn't use bootstrap, so i was wondering whether bootstrap components are supported or not.