Skip to content

Latest commit

 

History

History
30 lines (28 loc) · 1 KB

README.md

File metadata and controls

30 lines (28 loc) · 1 KB

Data-Visualization using Dash by Plotly

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.

Running Flask app instructions

In order to run it locally, perform following intructions:

  1. Clone this project.
  2. Create virtual environment using terminal:
    conda create --name yourenvname python=x.x
    
  3. To activate virtual environment, use:
    activate yourenvname
    
    To deactivate, use:
    deactivate
    
    To delete a conda environment, use:
    conda remove -n yourenvname -all
    
  4. To install all required dependencies or update requirements.txt by:
    pip install -r requirements.txt
    
  5. cd into project directory
  6. Type py index.py in terminal
  7. It shows localhost in terminal. Control click link and it opens in your default browser.