Quick Start Guide
-
Create a new folder on your Computer to hold the project files.
-
Open Terminal and navigate to your project folder: cd path/to/your/project ex. cd /Users/km/Documents/Projects/RandomSampleSelector
-
Create a virtual environment (recommended): python3 -m venv venv
-
Activate the virtual environment: source venv/bin/activate
-
Install the required packages: pip install streamlit pandas numpy openpyxl
-
To Run the app excute the code below in the terminal streamlit run app.py