Flask Web App with embedded Dash dashboard To run in your machine follow below commands. git clone <repository link> cd <working directory> python3 -m virtualenv venv To activate environment in Windows venv\Scripts\activate Install all the requirements pip install -r requirements.txt Flask imports the application from the place indicated by the FLASK_APP environment variable Set Flask_APP = app.py Run app locally flask run You can access the app at http://127.0.0.1:5000/ in your browser