Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 511 Bytes

File metadata and controls

19 lines (13 loc) · 511 Bytes

Quick Start Guide

  1. Create a new folder on your Computer to hold the project files.

  2. Open Terminal and navigate to your project folder: cd path/to/your/project ex. cd /Users/km/Documents/Projects/RandomSampleSelector

  3. Create a virtual environment (recommended): python3 -m venv venv

  4. Activate the virtual environment: source venv/bin/activate

  5. Install the required packages: pip install streamlit pandas numpy openpyxl

  6. To Run the app excute the code below in the terminal streamlit run app.py