Dash is a Python framework for building analytical web applications.Built on top of Plotly.js, React, and Flask, Dash ties modern UI elements like dropdowns, sliders, and graphs to your analytical Python code.
In order to run it locally, perform following intructions:
- Clone this project.
- Create virtual environment using terminal:
conda create --name yourenvname python=x.x
- To activate virtual environment, use:
To deactivate, use:
activate yourenvname
To delete a conda environment, use:deactivate
conda remove -n yourenvname -all
- To install all required dependencies or update requirements.txt by:
pip install -r requirements.txt
- cd into project directory
- Type
py index.py
in terminal - It shows localhost in terminal. Control click link and it opens in your default browser.